diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-25 17:12:46 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-07-25 17:12:46 +0200 |
commit | 9d20297ba803832d118bd27cd42107371123aa39 (patch) | |
tree | 824069786bfbae62e7329ee10a768dbd91d2ae04 | |
parent | 3191ec7ccedbf7265a409a314513cef5a8143495 (diff) | |
download | busybox-9d20297ba803832d118bd27cd42107371123aa39.tar.gz |
ssl_helper.sh: strip was invoked incorrectly
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | networking/ssl_helper-wolfssl/ssl_helper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ssl_helper-wolfssl/ssl_helper.sh b/networking/ssl_helper-wolfssl/ssl_helper.sh index 184ffe67e..c6cbf353f 100755 --- a/networking/ssl_helper-wolfssl/ssl_helper.sh +++ b/networking/ssl_helper-wolfssl/ssl_helper.sh @@ -9,4 +9,4 @@ STATIC="-static" ${PREFIX}gcc -Os -Wall -I.. -c ssl_helper.c -o ssl_helper.o ${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm ../src/.libs/libwolfssl.a --end-group -o ssl_helper -${PREFIX}-strip ssl_helper +${PREFIX}strip ssl_helper |