diff options
-rwxr-xr-x | scripts/trylink | 6 |
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" |
192 | fi | 192 | fi |
@@ -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" |
213 | fi | 213 | fi |
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 |
253 | fi | 253 | fi |