pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/multimedia/mmg/patches Fixed "test ==".



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8bf01091bca3
branches:  trunk
changeset: 521443:8bf01091bca3
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Nov 12 02:28:45 2006 +0000

description:
Fixed "test ==".

diffstat:

 multimedia/mmg/patches/patch-ac |  14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diffs (18 lines):

diff -r 8ae688db1aa6 -r 8bf01091bca3 multimedia/mmg/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/mmg/patches/patch-ac   Sun Nov 12 02:28:45 2006 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-ac,v 1.3 2006/11/12 02:28:45 rillig Exp $
+
+--- tests/new_test.orig        2004-08-25 19:23:07.000000000 +0200
++++ tests/new_test     2006-11-12 02:25:41.000000000 +0100
+@@ -1,7 +1,7 @@
+ #!/bin/sh
+ 
+-if [ "$1" == "" ]; then
+-  echo 'Name?'
++if [ $# -eq 0 ]; then
++  echo 'Name?' 1>&2
+   exit 1
+ fi
+ 



Home | Main Index | Thread Index | Old Index