From: Laszlo Molnar Date: Wed, 24 Jun 1998 00:37:01 +0000 (+0200) Subject: Re: [PATCH for _66] Makefile.SH problem on dos/djgpp X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=87944a4aeab598c4b9580b4a7fc7acaac00ae223;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH for _66] Makefile.SH problem on dos/djgpp Message-ID: <19980624003701.C161@cdata.tvnet.hu> p4raw-id: //depot/perl@1230 --- diff --git a/pod/pod2text.PL b/pod/pod2text.PL index da645b5..94516c3 100644 --- a/pod/pod2text.PL +++ b/pod/pod2text.PL @@ -2,6 +2,7 @@ use Config; use File::Basename qw(&basename &dirname); +use Cwd; # List explicitly here the variables you want Configure to # generate. Metaconfig only looks for shell variables, so you @@ -12,6 +13,7 @@ use File::Basename qw(&basename &dirname); # This forces PL files to create target in same directory as PL file. # This is so that make depend always knows where to find PL derivatives. +$origdir = cwd; chdir dirname($0); $file = basename($0, '.PL'); $file .= '.com' if $^O eq 'VMS'; @@ -46,3 +48,4 @@ if(@ARGV) { close OUT or die "Can't close $file: $!"; chmod 0755, $file or die "Can't reset permissions for $file: $!\n"; exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':'; +chdir $origdir;