Hi!

The configure script for wget-1.21 contains an unportable test(1)
comparison operator -- it uses "==" in one place. The standards
suggest "=" and only bash supports "==".

Thanks,
 Thomas
$NetBSD: patch-configure,v 1.3 2021/01/04 12:27:41 wiz Exp $

Fix unportable test(1) operator.

--- configure.orig      2020-12-31 15:54:33.000000000 +0000
+++ configure
@@ -55925,7 +55925,7 @@ else
   WITH_XATTR_FALSE=
 fi
 
- if test "X$ENABLE_NTLM" == "Xyes"; then
+ if test "X$ENABLE_NTLM" = "Xyes"; then
   WITH_NTLM_TRUE=
   WITH_NTLM_FALSE='#'
 else

Reply via email to