1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[configure.ac] Change order of linking libs.

Previously -lwatt in build.sh was added before -lz, which caused
failures of decompression.
This commit is contained in:
Witold Filipczyk 2022-05-30 21:02:25 +02:00
parent a67c2349bc
commit f7f6b35546

View File

@ -472,7 +472,7 @@ AC_DEFUN([EL_CHECK_OPTIONAL_LIBRARY],
if test "[$]$1" = yes; then
EL_CONFIG([$1], [$2])
LIBS="$LIBS -l$4"
LIBS="-l$4 $LIBS"
else
if test -n "[$]WITHVAL_$1" &&
test "x[$]WITHVAL_$1" != xno; then