blob: 91015b2d9ff4d7d74cb1ffbb33a07d7da68020a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|