aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/wget2
diff options
context:
space:
mode:
authorGravatar Tim Rühsen <tim.ruehsen@gmx.de>2018-12-28 18:28:29 +0100
committerGravatar Abhishek Arya <inferno@chromium.org>2018-12-28 09:28:29 -0800
commitb332fd9f759a5426ab56f72f9a3e5f86d55a8582 (patch)
tree25fc9ca86c55f868794c935846efd80496dcf119 /projects/wget2
parent2b67387299e2308251971dee0669452379b75bee (diff)
[wget2] Fix order of link libraries (#2059)
Diffstat (limited to 'projects/wget2')
-rwxr-xr-xprojects/wget2/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/projects/wget2/build.sh b/projects/wget2/build.sh
index 36d09743..d7748721 100755
--- a/projects/wget2/build.sh
+++ b/projects/wget2/build.sh
@@ -72,7 +72,7 @@ make -j$(nproc)
make install
cd $SRC/libmicrohttpd-*
-LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
+LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
./configure --prefix=$WGET2_DEPS_PATH --disable-doc --disable-examples --disable-shared --enable-static
make -j$(nproc)
make install
@@ -85,7 +85,7 @@ cd $SRC/wget2
./bootstrap
# build and run non-networking tests
-LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
+LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
./configure -C --enable-static --disable-shared --disable-doc --without-plugin-support
make clean
make -j$(nproc)
@@ -93,7 +93,7 @@ make -j$(nproc) -C unit-tests check
make -j$(nproc) -C fuzz check
# build for fuzzing
-LIBS="-lgnutls -lnettle -lhogweed -lidn2 -lunistring" \
+LIBS="-lgnutls -lhogweed -lnettle -lidn2 -lunistring" \
./configure -C --enable-fuzzing --enable-static --disable-shared --disable-doc --without-plugin-support
make clean
make -j$(nproc) -C lib