diff options
author | rillig <rillig> | 2006-10-05 11:15:41 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-05 11:15:41 +0000 |
commit | 109c2ff9cb7f9f3ae0a5548c56b0010829ff3e07 (patch) | |
tree | 530bcef7e4ca75c3b69f7eb9e4fb62adbe8dbcf7 /security | |
parent | 9e44d392492697d6187acce15d753d347d1ccb65 (diff) | |
download | pkgsrc-109c2ff9cb7f9f3ae0a5548c56b0010829ff3e07.tar.gz |
Fixed "test ==".
Diffstat (limited to 'security')
-rw-r--r-- | security/honeyd/distinfo | 3 | ||||
-rw-r--r-- | security/honeyd/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/security/honeyd/distinfo b/security/honeyd/distinfo index 8661f5bcd08..0623a170c6d 100644 --- a/security/honeyd/distinfo +++ b/security/honeyd/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2006/08/21 20:19:36 adrianp Exp $ +$NetBSD: distinfo,v 1.6 2006/10/05 11:15:41 rillig Exp $ SHA1 (honeyd-1.5b.tar.gz) = a6cef01ddb0b649442ac60e2a08b226b1634e3f9 RMD160 (honeyd-1.5b.tar.gz) = 40ebe7d3a2915b5145c5a2eef04b9d1de18fbb09 Size (honeyd-1.5b.tar.gz) = 881787 bytes SHA1 (patch-aa) = b69d986bd1a5c1847f4f5467216730da020c8686 +SHA1 (patch-ab) = 6f789cae31cc9b38ae68c2d9250dcab67e1a0146 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 |