diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-05 14:46:36 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-05 16:02:44 -0800 |
commit | a0fb95e3199810268cfe88c7c4ff0d9958e07062 (patch) | |
tree | 92477586ac092b07aa64422477d3cd05b280803f /Makefile | |
parent | ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 (diff) | |
download | git-a0fb95e3199810268cfe88c7c4ff0d9958e07062.tar.gz git-a0fb95e3199810268cfe88c7c4ff0d9958e07062.tar.xz |
blame: avoid -lm by not using log().
... as suggested on the list.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -534,10 +534,6 @@ git-rev-list$X: rev-list.o $(LIB_FILE) $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ $(LIBS) $(OPENSSL_LIBSSL) -git-blame$X: blame.o $(LIB_FILE) - $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \ - $(LIBS) -lm - init-db.o: init-db.c $(CC) -c $(ALL_CFLAGS) \ -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $*.c |