diff options
author | Mark Murray <markm@FreeBSD.org> | 1998-09-09 13:10:47 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1998-09-09 13:10:47 +0000 |
commit | 39ab139322dded835263bcab30127666f0f68f4d (patch) | |
tree | bcef7a74de8c8a50747f8b7079961295c0d9391f /contrib/perl5/lib | |
parent | 05d46b3cd629ae13512e20a7f996ecd53d283db8 (diff) |
Notes
Diffstat (limited to 'contrib/perl5/lib')
-rw-r--r-- | contrib/perl5/lib/Cwd.pm | 2 | ||||
-rw-r--r-- | contrib/perl5/lib/ExtUtils/MM_Unix.pm | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/perl5/lib/Cwd.pm b/contrib/perl5/lib/Cwd.pm index 7febb0dde298..28361b700740 100644 --- a/contrib/perl5/lib/Cwd.pm +++ b/contrib/perl5/lib/Cwd.pm @@ -79,7 +79,7 @@ require Exporter; sub _backtick_pwd { my $cwd; - chop($cwd = `pwd`); + chop($cwd = `/bin/pwd`); $cwd; } diff --git a/contrib/perl5/lib/ExtUtils/MM_Unix.pm b/contrib/perl5/lib/ExtUtils/MM_Unix.pm index 9a96504b75ab..dc214789c71b 100644 --- a/contrib/perl5/lib/ExtUtils/MM_Unix.pm +++ b/contrib/perl5/lib/ExtUtils/MM_Unix.pm @@ -8,8 +8,8 @@ use strict; use vars qw($VERSION $Is_Mac $Is_OS2 $Is_VMS $Is_Win32 $Is_Dos $Is_PERL_OBJECT $Verbose %pm %static $Xsubpp_Version); -$VERSION = substr q$Revision: 1.12601 $, 10; -# $Id: MM_Unix.pm,v 1.126 1998/06/28 21:32:49 k Exp k $ +$VERSION = substr q$Revision: 1.1.1.1 $, 10; +# $Id: MM_Unix.pm,v 1.1.1.1 1998/09/09 06:59:54 markm Exp $ Exporter::import('ExtUtils::MakeMaker', qw( $Verbose &neatvalue)); @@ -1033,7 +1033,7 @@ $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists $ldrun = qq{-rpath "$self->{LD_RUN_PATH}"} if ($^O eq 'irix' && $self->{LD_RUN_PATH}); - push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom. + push(@m,' $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom. ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(EXPORT_LIST)'); push @m, ' $(CHMOD) $(PERM_RWX) $@ |