diff options
author | John Peacock <jpeacock@rowman.com> | 2001-11-30 05:24:00 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-30 14:57:19 +0000 |
commit | e6de440e4306cc5058e8730590a5ce694ae89bab (patch) | |
tree | 5ee31b3f2acdf80abdd1a4fbcba97fc931e50559 | |
parent | 6a5272dafb3534619b346e3573b02685dca65b8a (diff) | |
download | perl-e6de440e4306cc5058e8730590a5ce694ae89bab.tar.gz |
Cygwin failures with lib/ExtUtils/Embed.t
Message-ID: <3C07A490.A22A76B0@rowman.com>
p4raw-id: //depot/perl@13387
-rw-r--r-- | lib/ExtUtils/Embed.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/Embed.t b/lib/ExtUtils/Embed.t index 36d92b5693..b56d233880 100644 --- a/lib/ExtUtils/Embed.t +++ b/lib/ExtUtils/Embed.t @@ -78,7 +78,7 @@ if ($^O eq 'VMS') { s!-bE:(\S+)!-bE:$perl_exp!; } } elsif ($^O eq 'cygwin') { # Cygwin needs the libperl copied - system("cp ../$Config{'libperl'} libperl.dll"); # for test 1 + system("cp ../$Config{'libperl'} ../libperl.dll"); # for test 1 } } my $status; @@ -99,7 +99,7 @@ $status = system($embed_test); print (($status? 'not ':'')."ok 9 # $status\n"); unlink($exe,"embed_test.c",$obj); unlink("embed_test.map","embed_test.lis") if $^O eq 'VMS'; -unlink("libperl.dll") if $^O eq 'cygwin'; +unlink("../libperl.dll") if $^O eq 'cygwin'; # gcc -g -I.. -L../ -o perl_test perl_test.c -lperl `../perl -I../lib -MExtUtils::Embed -I../ -e ccopts -e ldopts` |