diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-05 11:15:41 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-05 11:15:41 +0000 |
commit | 3d5e487fdbb1f2b2cc376d821c1b01fedcd7d119 (patch) | |
tree | 530bcef7e4ca75c3b69f7eb9e4fb62adbe8dbcf7 /security/honeyd/patches | |
parent | 13ca0dc1d0dada0eaa3d67f42216e2488540bae7 (diff) | |
download | pkgsrc-3d5e487fdbb1f2b2cc376d821c1b01fedcd7d119.tar.gz |
Fixed "test ==".
Diffstat (limited to 'security/honeyd/patches')
-rw-r--r-- | security/honeyd/patches/patch-ab | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/security/honeyd/patches/patch-ab b/security/honeyd/patches/patch-ab new file mode 100644 index 00000000000..43794e40f4e --- /dev/null +++ b/security/honeyd/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.2 2006/10/05 11:15:41 rillig Exp $ + +--- configure.orig 2006-10-05 13:12:24.000000000 +0200 ++++ configure 2006-10-05 13:13:08.000000000 +0200 +@@ -21853,7 +21853,7 @@ fi + + if test x"$PATH_PYTHON" != x -a x"$DO_PYTHON" = xdefine ; then + pv_gv=`$PATH_PYTHON -c 'import sys; print sys.version[:3] > "2.3.0"'` +- if test "$pv_gv" == "False" ; then ++ if test "$pv_gv" = "False" ; then + # Extract the first word of "python2.4", so it can be a program name with args. + set dummy python2.4; ac_word=$2 + echo "$as_me:$LINENO: checking for $ac_word" >&5 |