diff options
Diffstat (limited to 'dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch')
-rw-r--r-- | dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch b/dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch new file mode 100644 index 000000000000..cf775e7c644e --- /dev/null +++ b/dev-libs/libnatspec/files/libnatspec-0.3.0-bashisms.patch @@ -0,0 +1,20 @@ +--- 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) |