summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2007-12-10 09:31:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-12-11 08:38:46 (GMT)
commit28072a5d303b212695ef8b70f24cfed069ec94b8 (patch)
tree8c809e2021fcb8d20a4c5f02f90fd73082ad7cc8 /perl
parent923db42eea6fac743d8c93f0af4904740a445edf (diff)
downloadgit-28072a5d303b212695ef8b70f24cfed069ec94b8.zip
git-28072a5d303b212695ef8b70f24cfed069ec94b8.tar.gz
git-28072a5d303b212695ef8b70f24cfed069ec94b8.tar.bz2
Don't cache DESTDIR in perl/perl.mak.
DESTDIR is supposed to be overridden on 'make install' after doing 'make'. Have the automatically generated perl/perl.mak not cache the value of DESTDIR to support that for the perl/ subdirectory also. Signed-off-by: Gerrit Pape <pape@smarden.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'perl')
-rw-r--r--perl/Makefile.PL6
1 files changed, 1 insertions, 5 deletions
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
index 6aecd89..320253e 100644
--- a/perl/Makefile.PL
+++ b/perl/Makefile.PL
@@ -17,9 +17,6 @@ if ($@ || $Error::VERSION < 0.15009) {
$pm{'private-Error.pm'} = '$(INST_LIBDIR)/Error.pm';
}
-my %extra;
-$extra{DESTDIR} = $ENV{DESTDIR} if $ENV{DESTDIR};
-
# redirect stdout, otherwise the message "Writing perl.mak for Git"
# disrupts the output for the target 'instlibdir'
open STDOUT, ">&STDERR";
@@ -29,6 +26,5 @@ WriteMakefile(
VERSION_FROM => 'Git.pm',
PM => \%pm,
MAKEFILE => 'perl.mak',
- INSTALLSITEMAN3DIR => '$(SITEPREFIX)/share/man/man3',
- %extra
+ INSTALLSITEMAN3DIR => '$(SITEPREFIX)/share/man/man3'
);