summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 85d81a7)
raw | patch | inline | side by side (parent: 85d81a7)
author | Jim Meyering <jim@meyering.net> | |
Tue, 25 Sep 2007 06:42:16 +0000 (08:42 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 25 Sep 2007 07:30:16 +0000 (00:30 -0700) |
Without this, the extra output produced e.g., by "make --debug"
would go into $INSTLIBDIR and then cause the sed command to fail.
Signed-off-by: Jim Meyering <jim@meyering.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
would go into $INSTLIBDIR and then cause the sed command to fail.
Signed-off-by: Jim Meyering <jim@meyering.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index dace2112f903f6e5be8220deb3b1502496876bb1..42ba1d0fa7c7c2e1aeb5c499b09992d54b09cc21 100644 (file)
--- a/Makefile
+++ b/Makefile
$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
$(QUIET_GEN)$(RM) $@ $@+ && \
- INSTLIBDIR=`$(MAKE) -C perl -s --no-print-directory instlibdir` && \
+ INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory instlibdir` && \
sed -e '1{' \
-e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
-e ' h' \