[svn:ponie] rev 335 - trunk
[email protected] 23 Jul 2005 16:52:50 -0000
| Newsgroups | perl.ponie.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: nicholas
Date: Sat Jul 23 09:52:50 2005
New Revision: 335
Modified:
trunk/Configure.pl
Log:
Need to scrub all prefixes from the configuration of the perl running
Configure.pl
(plus the code as was for -Dprefix was buggy)
Modified: trunk/Configure.pl
==============================================================================
--- trunk/Configure.pl (original)
+++ trunk/Configure.pl Sat Jul 23 09:52:50 2005
@@ -37,7 +37,7 @@ foreach my $i (1..$configs) {
next if($config_value =~ /-Dusemymalloc/);
next if($config_value =~ /-Duse64bitint/);
next if($config_value eq '-Duseshrplib');
- next if($config_value eq '-Dprefix');
+ next if($config_value =~ '-D[a-z]*prefix');
next if($config_value =~ /-Dinstallusrbinperl/);
next if($config_value =~ /-D(?:priv|site|arch)lib(?:exp)?/);
next if($config_value =~ /-Dsitearch/);