wget-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

wget2 | Unportable test(1) operator (#562)


From: Thomas Klausner (@_wiz_)
Subject: wget2 | Unportable test(1) operator (#562)
Date: Mon, 27 Sep 2021 18:50:56 +0000


Thomas Klausner created an issue: https://gitlab.com/gnuwget/wget2/-/issues/562



The configure script uses "==" as a test comparison operator. This is not 
portable, only bash supports it.

Fix:
In configure.ac replace
    AS_IF([test "$with_ssl" == "yes"], [AC_MSG_ERROR([*** No SSL/TLS library 
not found.])],
with
    AS_IF([test "$with_ssl" = "yes"], [AC_MSG_ERROR([*** No SSL/TLS library not 
found.])],

-- 
Reply to this email directly or view it on GitLab: 
https://gitlab.com/gnuwget/wget2/-/issues/562
You're receiving this email because of your account on gitlab.com.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]