diff options
author | wiz <wiz@pkgsrc.org> | 2006-10-16 00:48:29 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-10-16 00:48:29 +0000 |
commit | 5f20abb30def86aab72cef7a7e1f04bb9784002c (patch) | |
tree | 165b62b5c625b1c471779bde08d56e46db5851e2 /multimedia/gopchop/patches | |
parent | a19f2361c20c2dbb1158832cf9e50498ef908278 (diff) | |
download | pkgsrc-5f20abb30def86aab72cef7a7e1f04bb9784002c.tar.gz |
Fix "test ==".
Diffstat (limited to 'multimedia/gopchop/patches')
-rw-r--r-- | multimedia/gopchop/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/multimedia/gopchop/patches/patch-ac b/multimedia/gopchop/patches/patch-ac new file mode 100644 index 00000000000..2caca1bfa09 --- /dev/null +++ b/multimedia/gopchop/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.3 2006/10/16 00:51:35 wiz Exp $ + +--- autogen.sh.orig 2005-04-28 05:24:34.000000000 +0000 ++++ autogen.sh +@@ -151,7 +151,7 @@ if test x$AUTOMAKE != x; then + fi + + # if no automake, don't bother testing for aclocal +-test x$AUTOMAKE == x || (aclocal --version) < /dev/null > /dev/null 2>&1 || { ++test x$AUTOMAKE = x || (aclocal --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "**Error**: Missing \`aclocal'. The version of \`automake'" + echo "installed doesn't appear recent enough." |