[csw-devel] SF.net SVN: gar:[19324] csw/mgar/gar/v2/bin/stripbin
chninkel at users.sourceforge.net
chninkel at users.sourceforge.net
Sat Sep 29 16:38:11 CEST 2012
Revision: 19324
http://gar.svn.sourceforge.net/gar/?rev=19324&view=rev
Author: chninkel
Date: 2012-09-29 14:38:11 +0000 (Sat, 29 Sep 2012)
Log Message:
-----------
stripbin must use SUN strip and never GNU strip
Modified Paths:
--------------
csw/mgar/gar/v2/bin/stripbin
Modified: csw/mgar/gar/v2/bin/stripbin
===================================================================
--- csw/mgar/gar/v2/bin/stripbin 2012-09-29 13:30:01 UTC (rev 19323)
+++ csw/mgar/gar/v2/bin/stripbin 2012-09-29 14:38:11 UTC (rev 19324)
@@ -28,7 +28,7 @@
my $perm = (stat $file)[2] & 07777;
print "making file temporarily writable ... " unless( $perm & 0200 );
chmod($perm | 0200, $file);
- system "strip", $file and die "Failed.";
+ system "/usr/ccs/bin/strip", $file and die "Failed.";
chmod($perm, $file);
print "Done.\n";
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list