diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-10 10:05:35 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-10 10:05:35 +0000 |
| commit | 141750e38897900db98eaeab1ea35c18f5794023 (patch) | |
| tree | a97589d04111988dd605bae0c90eea140c57dac3 /scripts/trylink | |
| parent | 88ce2748e4c26991facfa57f89f2b2637bd8fa73 (diff) | |
| download | busybox-w32-141750e38897900db98eaeab1ea35c18f5794023.tar.gz busybox-w32-141750e38897900db98eaeab1ea35c18f5794023.tar.bz2 busybox-w32-141750e38897900db98eaeab1ea35c18f5794023.zip | |
trylink: s/strip/$STRIP/g
Diffstat (limited to 'scripts/trylink')
| -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 |
