aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-06-29 17:02:21 -0700
committerJunio C Hamano <junkio@cox.net>2006-07-02 17:14:43 -0700
commit893973a6f271429fbe1973d61dc8e1d76753327e (patch)
treec0829aa1fce6e6d6e4c254d7b946501eb70c8b35 /Makefile
parentc35ebc902fd5c48c978d0d4cfab52ccdb4b11f54 (diff)
downloadgit-893973a6f271429fbe1973d61dc8e1d76753327e.tar.gz
git-893973a6f271429fbe1973d61dc8e1d76753327e.tar.xz
Perly git: work around buggy make implementations.
FC4 uses gnumake 3.80 whose annoying "Entering directory..." messages are not silenced with -s alone. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3c25fb38b..3810514d5 100644
--- a/Makefile
+++ b/Makefile
@@ -549,7 +549,7 @@ $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/Makefile
$(patsubst %.perl,%,$(SCRIPT_PERL)): % : %.perl
rm -f $@ $@+
- INSTLIBDIR=`make -s -C perl instlibdir` && \
+ INSTLIBDIR=`$(MAKE) -C perl -s --no-print-directory instlibdir` && \
sed -e '1s|#!.*perl\(.*\)|#!$(PERL_PATH_SQ)\1|' \
-e 's|@@INSTLIBDIR@@|'"$$INSTLIBDIR"'|g' \
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \