|
Lines 1-22
Link Here
|
| 1 |
From: René Hertell <interchange@hertell.com> |
|
|
| 2 |
Date: Wed, 24 Jun 2009 15:28:50 +0000 (+0300) |
| 3 |
Subject: Fixed Makefile.PL to honour the DESTDIR-variable when doing eg. "make DESTDIR=/tmp... |
| 4 |
X-Git-Tag: REL_5_7_2~51 |
| 5 |
X-Git-Url: http://git.icdevgroup.org/?p=interchange.git;a=commitdiff_plain;h=837be0427f40fd8f2d34fc3d6bbdc4d84aeb4ad3 |
| 6 |
|
| 7 |
Fixed Makefile.PL to honour the DESTDIR-variable when doing eg. "make DESTDIR=/tmp/pacage install" |
| 8 |
--- |
| 9 |
|
| 10 |
diff --git a/Makefile.PL b/Makefile.PL |
| 11 |
index ec81b8c..b26c529 100644 |
| 12 |
--- Makefile.PL |
| 13 |
+++ Makefile.PL |
| 14 |
@@ -739,7 +739,7 @@ sub MY::install { |
| 15 |
next unless $MV::Default{$_}; |
| 16 |
push @args, "$_=$MV::Default{$_}"; |
| 17 |
} |
| 18 |
- push @args, 'final=$(INSTALLARCHLIB)'; |
| 19 |
+ push @args, 'final=$(DESTDIR)$(INSTALLARCHLIB)'; |
| 20 |
|
| 21 |
my $argstring = join " ", @args; |
| 22 |
|