diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-14 01:14:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-14 01:14:15 +0000 |
commit | 57811b648fe720c958e00bce85988cec7f5b011d (patch) | |
tree | d3d86f44c97cbdf8211e190c065917a9bcb5b648 /net/amule/patches | |
parent | 4c9668bb5b21db302deeba8d660c552bde40c19e (diff) | |
download | pkgsrc-57811b648fe720c958e00bce85988cec7f5b011d.tar.gz |
Fixed "test ==".
Diffstat (limited to 'net/amule/patches')
-rw-r--r-- | net/amule/patches/patch-aa | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/net/amule/patches/patch-aa b/net/amule/patches/patch-aa index bb563e3e502..8181d47007c 100644 --- a/net/amule/patches/patch-aa +++ b/net/amule/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.7 2006/08/17 23:55:16 adam Exp $ +$NetBSD: patch-aa,v 1.8 2006/10/14 01:14:15 rillig Exp $ --- configure.orig 2006-06-11 17:08:53.000000000 +0200 -+++ configure ++++ configure 2006-10-14 03:13:01.000000000 +0200 @@ -8227,6 +8227,7 @@ else result="no" fi @@ -19,3 +19,12 @@ $NetBSD: patch-aa,v 1.7 2006/08/17 23:55:16 adam Exp $ { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } fi +@@ -18962,7 +18963,7 @@ case "$ccache" in + + yes) + +- if test x$ccache_prefix == x ; then ++ if test x$ccache_prefix = x ; then + ccache_full=$(which ccache) + ccache_prefix=$(dirname ${ccache_full}) + fi |