diff options
author | Denys Vlasenko | 2016-12-22 15:13:37 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-12-22 15:13:37 +0100 |
commit | 4acd393eba179f7dfe70f647e3798bc8d10c783a (patch) | |
tree | 9db820b4173488c7291800a9b6aa500d46a4aa6a /networking/ssl_helper-wolfssl/ssl_helper.sh | |
parent | 326edc3e375d6d5be205d4b1592211bf15e33bcd (diff) | |
download | busybox-4acd393eba179f7dfe70f647e3798bc8d10c783a.zip busybox-4acd393eba179f7dfe70f647e3798bc8d10c783a.tar.gz |
Update information on building httpd and wget helpers
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ssl_helper-wolfssl/ssl_helper.sh')
-rwxr-xr-x | networking/ssl_helper-wolfssl/ssl_helper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ssl_helper-wolfssl/ssl_helper.sh b/networking/ssl_helper-wolfssl/ssl_helper.sh index c6cbf35..8f20963 100755 --- a/networking/ssl_helper-wolfssl/ssl_helper.sh +++ b/networking/ssl_helper-wolfssl/ssl_helper.sh @@ -7,6 +7,6 @@ STATIC="-static" #PREFIX="" #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}gcc -Os -Wall -I wolfssl-* -c ssl_helper.c -o ssl_helper.o +${PREFIX}gcc $STATIC --start-group ssl_helper.o -lm wolfssl-*/src/.libs/libwolfssl.a --end-group -o ssl_helper ${PREFIX}strip ssl_helper |