OSDN Git Service

* speclib: Use a more robust method to derive full file path.
authorcgf <cgf>
Fri, 10 Apr 2009 04:29:24 +0000 (04:29 +0000)
committercgf <cgf>
Fri, 10 Apr 2009 04:29:24 +0000 (04:29 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/speclib

index 8a9a769..6831ea1 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-10  Christopher Faylor  <me+cygwin@cgf.cx>
+
+       * speclib: Use a more robust method to derive full file path.
+
 2009-04-09  Christopher Faylor  <me+cygwin@cgf.cx>
 
        * speclib: Semi-revert to previous version but don't try to generate
index e1e9ebc..b26644a 100755 (executable)
@@ -2,7 +2,7 @@
 use Getopt::Long;
 use File::Temp qw'tempdir';
 use File::Basename;
-use Cwd;
+use File::Spec;
 use strict;
 
 sub dllname($;$);
@@ -14,8 +14,8 @@ GetOptions('static!'=>\$static, 'v|exclude!'=>\$exclude);
 
 my $nm = shift;
 my $ar = shift;
-my $libdll = Cwd::abs_path(shift @ARGV);
-my $lib = Cwd::abs_path(pop @ARGV);
+my $libdll = File::Spec->rel2abs(shift @ARGV);
+my $lib =  File::Spec->rel2abs(pop @ARGV);
 
 open my $nm_fd, '-|', $nm, '-Ap', '--defined-only', @ARGV, $libdll or
   die "$0: execution of $nm for object files failed - $!\n";