aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-10 10:05:35 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-10 10:05:35 +0000
commit141750e38897900db98eaeab1ea35c18f5794023 (patch)
treea97589d04111988dd605bae0c90eea140c57dac3
parent88ce2748e4c26991facfa57f89f2b2637bd8fa73 (diff)
downloadbusybox-w32-141750e38897900db98eaeab1ea35c18f5794023.tar.gz
busybox-w32-141750e38897900db98eaeab1ea35c18f5794023.tar.bz2
busybox-w32-141750e38897900db98eaeab1ea35c18f5794023.zip
trylink: s/strip/$STRIP/g
-rwxr-xr-xscripts/trylink6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/trylink b/scripts/trylink
index 524e83c92..fc87df032 100755
--- a/scripts/trylink
+++ b/scripts/trylink
@@ -186,7 +186,7 @@ if test "$CONFIG_BUILD_LIBBUSYBOX" = y; then
186 cat $EXE.out 186 cat $EXE.out
187 exit 1 187 exit 1
188 } 188 }
189 strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER" 189 $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/libbusybox.so.$BB_VER"
190 chmod a+x "$sharedlib_dir/libbusybox.so.$BB_VER" 190 chmod a+x "$sharedlib_dir/libbusybox.so.$BB_VER"
191 echo "libbusybox: $sharedlib_dir/libbusybox.so.$BB_VER" 191 echo "libbusybox: $sharedlib_dir/libbusybox.so.$BB_VER"
192fi 192fi
@@ -208,7 +208,7 @@ if test "$CONFIG_FEATURE_SHARED_BUSYBOX" = y; then
208 cat $EXE.out 208 cat $EXE.out
209 exit 1 209 exit 1
210 } 210 }
211 strip -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox" 211 $STRIP -s --remove-section=.note --remove-section=.comment $EXE -o "$sharedlib_dir/busybox"
212 echo "busybox linked against libbusybox: $sharedlib_dir/busybox" 212 echo "busybox linked against libbusybox: $sharedlib_dir/busybox"
213fi 213fi
214 214
@@ -247,7 +247,7 @@ int main(int argc, char **argv)
247 exit 1 247 exit 1
248 } 248 }
249 rm -- "$sharedlib_dir/applet.c" $EXE.out 249 rm -- "$sharedlib_dir/applet.c" $EXE.out
250 strip -s --remove-section=.note --remove-section=.comment $EXE 250 $STRIP -s --remove-section=.note --remove-section=.comment $EXE
251 251
252 done <applet_lst.tmp 252 done <applet_lst.tmp
253fi 253fi