Changeset 5634
- Timestamp:
- 11/25/09 15:51:27 (2 years ago)
- File:
-
- 1 edited
-
branches/Release01x00/core/tools/extender.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/Release01x00/core/tools/extender.pl
r5633 r5634 725 725 else { 726 726 print STDERR 727 "Archive::Tar is not installed; trying tar on the command-line\n"; 728 print `tar xvf$compressed $archive`; 729 if ($?) { 730 print STDERR "tar failed: $?\n"; 731 return 0; 732 } 727 "Archive::Tar is not installed: $@\n"; 728 for my $tarBin ( qw( tar gtar ) ) { 729 print STDERR "Trying $tarBin on the command-line\n"; 730 system $tarBin, "xvf$compressed", $archive and return 1; 731 if ($?) { 732 print STDERR "$tarBin failed: $?\n"; 733 } 734 } 735 return 0; 733 736 } 734 737
Note: See TracChangeset
for help on using the changeset viewer.
