Author: nicholas
Date: Sun Jun 26 14:58:12 2005
New Revision: 300
Modified:
trunk/Configure.pl
Log:
Purge the configuration of any prefix associated with the running perl, as
right now it's unlikely to be useful, but will confuse ./Configure and
./installperl. If you did want your ponie to go there, then use --prefix
explicitly.
Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl (original)
+++ trunk/Configure.pl Sun Jun 26 14:58:12 2005
@@ -37,6 +37,12 @@ foreach my $i (1..$configs) {
next if($config_value =~ /-Dusemymalloc/);
next if($config_value eq '-Duseshrplib');
next if($config_value eq '-Dprefix');
+ next if($config_value =~ /-Dinstallusrbinperl/);
+ next if($config_value =~ /-D(?:priv|site|arch)lib(?:exp)?/);
+ next if($config_value =~ /-Dsitearch/);
+ next if($config_value =~ /-Dinstall/);
+ next if($config_value =~ /-Dscriptdir/);
+ next if($config_value =~ /man.dir/);
next if($config_value =~/\-de/);
# No, we need to override the linker
if ($config_value =~/\-Dlink=/) {