Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-06-30 04:02:21 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-03 04:14:43 +0400
commit893973a6f271429fbe1973d61dc8e1d76753327e (patch)
treec0829aa1fce6e6d6e4c254d7b946501eb70c8b35 /perl
parentc35ebc902fd5c48c978d0d4cfab52ccdb4b11f54 (diff)
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 'perl')
-rw-r--r--perl/Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index 92c140d39b..d401a6609b 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -3,7 +3,7 @@ use ExtUtils::MakeMaker;
sub MY::postamble {
return <<'MAKE_FRAG';
instlibdir:
- @echo $(INSTALLSITEARCH)
+ @echo '$(INSTALLSITEARCH)'
MAKE_FRAG
}