Module Name: src
Committed By: christos
Date: Sun Feb 17 02:36:21 UTC 2013
Modified Files:
src/lib: checkver
Log Message:
remove -'s from options
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/lib/checkver
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/checkver
diff -u src/lib/checkver:1.15 src/lib/checkver:1.16
--- src/lib/checkver:1.15 Sat Feb 16 20:26:47 2013
+++ src/lib/checkver Sat Feb 16 21:36:21 2013
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: checkver,v 1.15 2013/02/17 01:26:47 christos Exp $
+# $NetBSD: checkver,v 1.16 2013/02/17 02:36:21 christos Exp $
#
# Copyright (c) 1998 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -143,8 +143,8 @@ while getopts df:shqv: f; do
if [ $usedir -eq 1 -o $usefile -eq 1 ]; then
Usage
fi;;
- -v) shlib_version=$OPTARG;;
- -q) quiet=1;;
+ v) shlib_version=$OPTARG;;
+ q) quiet=1;;
*) Usage;;
esac
done