diff options
author | Lukas Rusak <lorusak@gmail.com> | 2023-11-10 15:39:22 -0800 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2023-11-15 19:21:25 -0800 |
commit | c3248738fc445951ea785105970d1648028cf33f (patch) | |
tree | 01608f40c50fde9acaf34ebf50036cc68de0ae76 /tools | |
parent | 460db897107e1073ec471af1d00d071262804fd8 (diff) |
tools/depends: curl: format configure options
Signed-off-by: Lukas Rusak <lorusak@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/curl/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/depends/target/curl/Makefile b/tools/depends/target/curl/Makefile index 81c3130caf..9618f4aa0f 100644 --- a/tools/depends/target/curl/Makefile +++ b/tools/depends/target/curl/Makefile @@ -10,9 +10,17 @@ SHA512=ad7390fd700cb74db356a39e842dab011823b87d4047687f2a8c2e0f2920a4f8c6c193ba5 include ../../download-files.include # configuration settings CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \ - ./configure --prefix=$(PREFIX) --disable-shared --disable-ldap \ - --without-libssh2 --disable-ntlm-wb --enable-ipv6 --without-librtmp \ - --without-libidn2 --with-ca-fallback --with-ssl=$(PREFIX) --with-nghttp2=$(PREFIX) + ./configure --prefix=$(PREFIX) \ + --disable-shared \ + --disable-ldap \ + --without-libssh2 \ + --disable-ntlm-wb \ + --enable-ipv6 \ + --without-librtmp \ + --without-libidn2 \ + --with-ca-fallback \ + --with-ssl=$(PREFIX) \ + --with-nghttp2=$(PREFIX) LIBDYLIB=$(PLATFORM)/lib/.libs/lib$(LIBNAME).a |