diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-21 19:22:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-21 19:22:12 +0000 |
commit | 252d522fc7e6e1372493d483a621c26e33b67033 (patch) | |
tree | b39ff37f682e0e0bd25d26c72572eafde769f050 /cad | |
parent | 135672e7225497469dba8ef3df745cc9af8975ba (diff) | |
download | pkgsrc-252d522fc7e6e1372493d483a621c26e33b67033.tar.gz |
Fixed "test ==".
Diffstat (limited to 'cad')
-rw-r--r-- | cad/gschem/distinfo | 3 | ||||
-rw-r--r-- | cad/gschem/patches/patch-ab | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/cad/gschem/distinfo b/cad/gschem/distinfo index 152ed18acb1..d2f5ee15c1c 100644 --- a/cad/gschem/distinfo +++ b/cad/gschem/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.19 2006/09/10 19:47:54 dmcmahill Exp $ +$NetBSD: distinfo,v 1.20 2006/10/21 19:22:12 rillig Exp $ SHA1 (geda/geda-gschem-20060906.tar.gz) = 5ab076f08597c6367a172b90a6c12bd4d59f0d8b RMD160 (geda/geda-gschem-20060906.tar.gz) = 620569efa3f0cdb06a9c780ba57545f83b7cb86b Size (geda/geda-gschem-20060906.tar.gz) = 1002074 bytes SHA1 (patch-aa) = b3116a09ccf477e931aadfa0c9212a19f62175ea +SHA1 (patch-ab) = cea6b45ebd34dd846bcef6a0967b4644e077cc7e diff --git a/cad/gschem/patches/patch-ab b/cad/gschem/patches/patch-ab new file mode 100644 index 00000000000..91015b2d9ff --- /dev/null +++ b/cad/gschem/patches/patch-ab @@ -0,0 +1,16 @@ +$NetBSD: patch-ab,v 1.8 2006/10/21 19:22:12 rillig Exp $ + +--- scripts/makeimages.orig 2006-02-26 20:33:59.000000000 +0100 ++++ scripts/makeimages 2006-10-21 21:19:12.000000000 +0200 +@@ -7,9 +7,9 @@ + # - ghostscript (I use aladdin gs) + # + +-if [ "$1" == "" ] ++if [ $# -ne 1 ] + then +- echo "usage: makeimages path_to_libary" ++ echo "usage: makeimages path_to_libary" 1>&2 + exit 1 + fi + |