Skip to content

Commit

Permalink
installer: improvements to fix-path-perl.PL on Win32
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
  • Loading branch information
Galen Charlton authored and Joshua Ferraro committed Dec 21, 2007
1 parent 6d2da88 commit abf5820
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions fix-perl-path.PL
Expand Up @@ -74,14 +74,19 @@ sub fixshebang{

# At this point, file is in 'blib' and by default
# has mode a-w. Therefore, must change permission
# to make it writable.
# to make it writable. Note that stat and chmod
# (the Perl functions) should work on Win32
my $old_perm;
if ($^O ne 'MSWin32') {
$old_perm = (stat $pathfile)[2] & 07777;
my $new_perm = $old_perm | 0200;
chmod $new_perm, $pathfile;
}
tie @filearray, 'Tie::File', $pathfile or die $!;
$old_perm = (stat $pathfile)[2] & 07777;
my $new_perm = $old_perm | 0200;
chmod $new_perm, $pathfile;

# tie the file -- note that we're explicitly setting the line (record)
# separator to hex 0A (the Unix newline) because that's what
# the files copied to blib are using, regardless of whether the install
# is under a Unix variant or Windows.
tie @filearray, 'Tie::File', $pathfile, recsep => "\x0a" or die $!;

warn "First line of $file is $filearray[0]\n\n" if $DEBUG;
if ( ( $filearray[0] =~ /#!.*perl/ ) && ( $filearray[0] !~ /$shebang|"$shebang -w"/ ) ) {
warn "\n\tRe-writing shebang line for $pathfile\n" if $DEBUG;
Expand All @@ -96,9 +101,7 @@ sub fixshebang{
warn "\n\tNo shebang line found in $pathfile\n\n" if $DEBUG;
}
untie @filearray;
if ($^O ne 'MSWin32') {
chmod $old_perm, $pathfile;
}
chmod $old_perm, $pathfile;
}
# handle directories
elsif ( -d ($dir . '/' . $file) && $file !~ /^\.{1,2}/ ) {
Expand Down

0 comments on commit abf5820

Please sign in to comment.