diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-09-25 00:30:33 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-25 00:30:33 -0700 |
commit | 41ef95aea7c8d8a337af693b601511e099cc468f (patch) | |
tree | 7c108f9cd0a30983f3397491763c85507e0b2875 /Makefile | |
parent | Start RelNotes for 1.5.4 (diff) | |
parent | Do not over-quote the -f envelopesender value. (diff) | |
download | tgif-41ef95aea7c8d8a337af693b601511e099cc468f.tar.xz |
Merge branch 'maint'
* maint:
Do not over-quote the -f envelopesender value.
unexpected Make output (e.g. from --debug) causes build failure
Fixed minor typo in t/t9001-send-email.sh test command line.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -805,7 +805,7 @@ perl/perl.mak: GIT-CFLAGS $(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' \ |