pkgsrc/www/amaya/patches/patch-ar
dholland a9d47fbace Don't use ../ in patches; GNU patch doesn't like it. Patch a bashism that
turned up when the portability check got broader.

XXX: this package doesn't build.
2011-07-02 18:54:48 +00:00

15 lines
491 B
Text

$NetBSD: patch-ar,v 1.1 2011/07/02 18:54:49 dholland Exp $
Remove bashism.
--- libwww/configure.ac~ 2006-03-20 10:36:46.000000000 +0000
+++ libwww/configure.ac
@@ -302,7 +302,7 @@ AC_CHECK_FUNCS(getcwd gethostname getdom
AC_CHECK_FUNC(unlink)
if test "$ac_cv_func_unlink" != yes ; then
AC_CHECK_FUNC(remove)
- if test "$ac_cv_func_remove" == yes ; then
+ if test "$ac_cv_func_remove" = yes ; then
AC_DEFINE(unlink, remove, [What to use for unlink])
fi
fi