pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/w3c-httpd Fixed "test ==", as reported in PR 34970.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/37e46679269f
branches:  trunk
changeset: 520918:37e46679269f
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Thu Nov 02 18:59:35 2006 +0000

description:
Fixed "test ==", as reported in PR 34970.

diffstat:

 www/w3c-httpd/distinfo         |   3 ++-
 www/w3c-httpd/patches/patch-cb |  19 +++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletions(-)

diffs (37 lines):

diff -r 3e283cf252a6 -r 37e46679269f www/w3c-httpd/distinfo
--- a/www/w3c-httpd/distinfo    Thu Nov 02 18:48:53 2006 +0000
+++ b/www/w3c-httpd/distinfo    Thu Nov 02 18:59:35 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2006/10/07 22:39:28 schwarz Exp $
+$NetBSD: distinfo,v 1.6 2006/11/02 18:59:35 rillig Exp $
 
 SHA1 (w3c-httpd-3.0A.tar.gz) = 90d31fa16079e3eb959f361469f0f59af4611618
 RMD160 (w3c-httpd-3.0A.tar.gz) = 6254b39cbc89f7f4ecc0928d02dbb171548265a4
@@ -16,3 +16,4 @@
 SHA1 (patch-bb) = 17e0cf4b86138d6bdd843315ca0aac01357d872a
 SHA1 (patch-bc) = cc1d854a61aac394faeaa7be4013459b8b7618fe
 SHA1 (patch-ca) = 7a6ad8bf8493aab8d6e9fb4a189493d8d7225996
+SHA1 (patch-cb) = 01be696c5bd517be783d810411a6827b0ee9cfb0
diff -r 3e283cf252a6 -r 37e46679269f www/w3c-httpd/patches/patch-cb
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/w3c-httpd/patches/patch-cb    Thu Nov 02 18:59:35 2006 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-cb,v 1.1 2006/11/02 18:59:36 rillig Exp $
+
+What does that code want to say me? I'm confused.
+
+--- BUILD.SH.orig      1994-09-23 14:12:52.000000000 +0200
++++ BUILD.SH   2006-11-02 19:55:14.000000000 +0100
+@@ -18,10 +18,9 @@ UNAME=""
+ if [ -s /usr/bin/uname ]; then                UNAME=`/usr/bin/uname`; fi
+ if [ -s /bin/uname ]; then            UNAME=`/bin/uname`; fi
+ if [ -s /usr/apollo/bin ]; then       UNAME=`ver sys5.3 /bin/uname`; fi
+-if [ -s $UNAME == "" ]; then
++if [ "$UNAME" = "" ]; then
+     if [ -r /NextApps ]; then
+-        hostinfo | grep I386
+-        if [ $stat == 0 ]; then
++        if hostinfo | grep I386; then
+             UNAME=next-386
+         else
+             UNAME=next



Home | Main Index | Thread Index | Old Index