From b332fd9f759a5426ab56f72f9a3e5f86d55a8582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 28 Dec 2018 18:28:29 +0100 Subject: [PATCH] [wget2] Fix order of link libraries (#2059) --- projects/wget2/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/wget2/build.sh b/projects/wget2/build.sh index 36d097430..d7748721a 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