From: Dr. Stephen Henson Date: Thu, 9 Feb 2006 12:29:21 +0000 (+0000) Subject: Update from 0.9.7-stable. X-Git-Tag: OpenSSL_0_9_8k^2~1570 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=07bb51b6b4961108a97ca0dad9f3e82418c1b0e0;p=oweals%2Fopenssl.git Update from 0.9.7-stable. --- diff --git a/util/mklink.pl b/util/mklink.pl index c8653cecc3..d9bc98aab8 100755 --- a/util/mklink.pl +++ b/util/mklink.pl @@ -15,12 +15,14 @@ # Apart from this, this script should be able to handle even the most # pathological cases. +use Cwd; + my $from = shift; my @files = @ARGV; my @from_path = split(/[\\\/]/, $from); -my $pwd = `pwd`; -chop($pwd); +my $pwd = getcwd(); +chomp($pwd); my @pwd_path = split(/[\\\/]/, $pwd); my @to_path = ();