diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-04 16:08:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-04 16:08:00 +0000 |
commit | f1b78bdb81ccbac5f019f4be6a150db83da689ca (patch) | |
tree | 3ded76eb1b2254b2f145a49246bf7b0f5ab9b253 | |
parent | 09256e2f0d59f0f0dc9d72834a451ff542a26cf0 (diff) | |
download | perl-f1b78bdb81ccbac5f019f4be6a150db83da689ca.tar.gz |
(Retracted by #11155) PERLRUNINST needed in some spots.
p4raw-id: //depot/perl@11145
-rw-r--r-- | lib/ExtUtils/MM_Unix.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 436c39781e..be93419fc0 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -3512,7 +3512,7 @@ sub tool_autosplit { $asl = "\$AutoSplit::Maxlen=$attribs{MAXLEN};" if $attribs{MAXLEN}; q{ # Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto -AUTOSPLITFILE = $(PERLRUN) -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;' +AUTOSPLITFILE = $(PERLRUNINST) -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;' }; } @@ -3539,13 +3539,13 @@ SHELL = $bin_sh push @m, q{ # The following is a portable way to say mkdir -p # To see which directories are created, change the if 0 to if 1 -MKPATH = $(PERLRUN) -MExtUtils::Command -e mkpath +MKPATH = $(PERLRUNINST) -MExtUtils::Command -e mkpath # This helps us to minimize the effect of the .exists files A yet # better solution would be to have a stable file in the perl # distribution with a timestamp of zero. But this solution doesn't # need any changes to the core distribution and works with older perls -EQUALIZE_TIMESTAMP = $(PERLRUN) -MExtUtils::Command -e eqtime +EQUALIZE_TIMESTAMP = $(PERLRUNINST) -MExtUtils::Command -e eqtime }; |