pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/emulators/uae Fix "test ==".



details:   https://anonhg.NetBSD.org/pkgsrc/rev/82c26f4f8ca2
branches:  trunk
changeset: 520306:82c26f4f8ca2
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Oct 18 23:38:59 2006 +0000

description:
Fix "test ==".

diffstat:

 emulators/uae/distinfo         |   3 ++-
 emulators/uae/patches/patch-ah |  22 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletions(-)

diffs (40 lines):

diff -r 99bbd879dbdd -r 82c26f4f8ca2 emulators/uae/distinfo
--- a/emulators/uae/distinfo    Wed Oct 18 23:30:46 2006 +0000
+++ b/emulators/uae/distinfo    Wed Oct 18 23:38:59 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2006/07/02 15:47:16 tron Exp $
+$NetBSD: distinfo,v 1.16 2006/10/18 23:38:59 wiz Exp $
 
 SHA1 (uae-0.8.25.tar.gz) = 41b7a70cf672d3cc516bd3856a051459a95a6517
 RMD160 (uae-0.8.25.tar.gz) = 6990dc7aaf43c8bda0d7b86e6d0ae164209d1eb1
@@ -10,3 +10,4 @@
 SHA1 (patch-ae) = 9235c20d2a60b3c48e87eb23463a14f558e0de4e
 SHA1 (patch-af) = ca05a7ec786d48e488d3b29e0650da1ef4f67d37
 SHA1 (patch-ag) = f62849869131a4ce3c87c4f3596fe2479ca3df8e
+SHA1 (patch-ah) = 3c467cd0e1de340733b9feb9e9e9c9365f9205ea
diff -r 99bbd879dbdd -r 82c26f4f8ca2 emulators/uae/patches/patch-ah
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/uae/patches/patch-ah    Wed Oct 18 23:38:59 2006 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ah,v 1.1 2006/10/18 23:38:59 wiz Exp $
+
+--- src/install_libscg.orig    2000-07-23 14:32:04.000000000 +0000
++++ src/install_libscg
+@@ -9,7 +9,7 @@
+ #
+ # check arguments
+ #
+-if [ $# -lt 1 ] || [ $# -gt 3 ] || [ "$1" == "--help" ]; then
++if [ $# -lt 1 ] || [ $# -gt 3 ] || [ "$1" = "--help" ]; then
+     echo "usage: $0 <cdrecord dir> <machine type (optional)>"
+     exit 0
+ fi
+@@ -31,7 +31,7 @@ else
+         echo "please specify your machine type - libscg was compiled for:"
+         echo "$machine"
+         exit 10
+-    elif [ "$machine"x == x ]; then
++    elif [ "$machine"x = x ]; then
+         echo "please compile cdrecord for your machine first"
+         exit 10
+     fi



Home | Main Index | Thread Index | Old Index