diff options
author | wiz <wiz> | 2006-10-16 00:48:29 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-10-16 00:48:29 +0000 |
commit | eb9a65f864cbf739b26b2b3b3112bc7ba1de5814 (patch) | |
tree | 165b62b5c625b1c471779bde08d56e46db5851e2 /multimedia/gopchop/patches | |
parent | f0a5751e419eb64b423e3af0ea818291eeacfb70 (diff) | |
download | pkgsrc-eb9a65f864cbf739b26b2b3b3112bc7ba1de5814.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." |