svn commit: trunk/busybox/scripts

vda at busybox.net vda at busybox.net
Wed Oct 10 10:05:36 UTC 2007


Author: vda
Date: 2007-10-10 03:05:35 -0700 (Wed, 10 Oct 2007)
New Revision: 20213

Log:
trylink: s/strip/$STRIP/g



Modified:
   trunk/busybox/scripts/trylink


Changeset:
Modified: trunk/busybox/scripts/trylink
===================================================================
--- trunk/busybox/scripts/trylink	2007-10-09 18:08:04 UTC (rev 20212)
+++ trunk/busybox/scripts/trylink	2007-10-10 10:05:35 UTC (rev 20213)
@@ -186,7 +186,7 @@
 	cat $EXE.out
 	exit 1
     }
-    strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
+    $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
     chmod a+x "$sharedlib_dir/libbusybox.so.$BB_VER"
     echo "libbusybox: $sharedlib_dir/libbusybox.so.$BB_VER"
 fi
@@ -208,7 +208,7 @@
 	cat $EXE.out
 	exit 1
     }
-    strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
+    $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
     echo "busybox linked against libbusybox: $sharedlib_dir/busybox"
 fi
 
@@ -247,7 +247,7 @@
 	    exit 1
 	}
 	rm -- "$sharedlib_dir/applet.c" $EXE.out
-	strip -s --remove-section=.note --remove-section=.comment $EXE
+	$STRIP -s --remove-section=.note --remove-section=.comment $EXE
 
     done <applet_lst.tmp
 fi




More information about the busybox-cvs mailing list