Files
gentoo/dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch
David Seifert 2e9ff0c478 dev-libs/libnatspec: Port to EAPI 7
Closes: https://bugs.gentoo.org/723090
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
2021-03-27 12:35:13 +01:00

21 lines
516 B
Diff

--- 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)