diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 05:16:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-24 05:16:09 +0000 |
commit | 45bc4d3a962b143ae3b9e7c219b3e795d0c331ce (patch) | |
tree | 902ba841dfaa39b0cf34f63519627012da48eefa /lib/ExtUtils/MM_Cygwin.pm | |
parent | 89afcb60a8aa0fcded9f2490166a9f2c4cb540f8 (diff) | |
download | perl-45bc4d3a962b143ae3b9e7c219b3e795d0c331ce.tar.gz |
Upgrade to MakeMaker 5.91_02, from Michael Schwern.
p4raw-id: //depot/perl@16125
Diffstat (limited to 'lib/ExtUtils/MM_Cygwin.pm')
-rw-r--r-- | lib/ExtUtils/MM_Cygwin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_Cygwin.pm b/lib/ExtUtils/MM_Cygwin.pm index 48e09957b0..59d89c2e8a 100644 --- a/lib/ExtUtils/MM_Cygwin.pm +++ b/lib/ExtUtils/MM_Cygwin.pm @@ -19,7 +19,7 @@ sub cflags { my $base = $self->SUPER::cflags($libperl); foreach (split /\n/, $base) { - / *= */ and $self->{$`} = $'; + /^(\S*)\s*=\s*(\S*)$/ and $self->{$1} = $2; }; $self->{CCFLAGS} .= " -DUSEIMPORTLIB" if ($Config{useshrplib} eq 'true'); |