Skip to content

Commit

Permalink
* speclib: Really revert to using tempdir.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Faylor committed Apr 14, 2009
1 parent d295466 commit fcea4c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions winsup/cygwin/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2009-04-14 Christopher Faylor <[email protected]>

* speclib: Really revert to using tempdir.

2009-04-14 Christopher Faylor <[email protected]>

* speclib: Revert to using tempdir.
Expand Down
4 changes: 2 additions & 2 deletions winsup/cygwin/speclib
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl
use Getopt::Long;
use File::Temp;
use File::Temp qw'tempdir';
use File::Basename;
use File::Spec;
use strict;
Expand Down Expand Up @@ -43,7 +43,7 @@ close $nm_fd;

%extract or die "$0: couldn't find symbols for $lib\n";

my $dir = File::Temp->tempdir(CLEANUP => 1);
my $dir = tempdir(CLEANUP => 1);

chdir $dir;
# print join(' ', '+', $ar, 'x', sort keys %extract), "\n";
Expand Down

0 comments on commit fcea4c1

Please sign in to comment.