diff options
Diffstat (limited to 'emulators/uae/patches/patch-ah')
-rw-r--r-- | emulators/uae/patches/patch-ah | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/emulators/uae/patches/patch-ah b/emulators/uae/patches/patch-ah new file mode 100644 index 00000000000..fa16d2d7a24 --- /dev/null +++ b/emulators/uae/patches/patch-ah @@ -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 |