You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.p...

21 lines
516 B

--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@
dnl Checks for libraries.
check_popt=""
AC_CHECK_LIB([popt], [main], check_popt=true)
-if test "x$check_popt" == x ; then
+if test "x$check_popt" = x ; then
AC_MSG_WARN([ libpopt not found.])
else
POPT_LIBS=-lpopt
@@ -47,7 +47,7 @@
check_iconv=""
AC_CHECK_HEADERS([iconv.h],check_iconv=true)
-if test "x$check_iconv" == x ; then
+if test "x$check_iconv" = x ; then
AC_MSG_ERROR([*** iconv.h not found.])
fi
AC_CHECK_LIB([iconv], libiconv_open)