Skip to content

Commit b992933

Browse files
dschoJunio C Hamano
authored andcommitted
Fix "gmake -j"
In my attempt to port git to IRIX, I broke it. Sorry. Signed-off-by: Johannes E. Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent a348ab7 commit b992933

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -515,15 +515,15 @@ git-ssh-upload$X: rsh.o
515515
git-ssh-pull$X: rsh.o fetch.o
516516
git-ssh-push$X: rsh.o
517517

518-
git-http-fetch$X: fetch.o http.o http-fetch.o
518+
git-http-fetch$X: fetch.o http.o http-fetch.o $(LIB_FILE)
519519
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
520520
$(LIBS) $(CURL_LIBCURL)
521521

522-
git-http-push$X: http.o http-push.o
522+
git-http-push$X: http.o http-push.o $(LIB_FILE)
523523
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
524524
$(LIBS) $(CURL_LIBCURL) $(EXPAT_LIBEXPAT)
525525

526-
git-rev-list$X: rev-list.o
526+
git-rev-list$X: rev-list.o $(LIB_FILE)
527527
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
528528
$(LIBS) $(OPENSSL_LIBSSL)
529529

0 commit comments

Comments
 (0)