pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/flavor/pkg Replaced the usage message with a standa...
details: https://anonhg.NetBSD.org/pkgsrc/rev/3a5961222140
branches: trunk
changeset: 535556:3a5961222140
user: rillig <rillig%pkgsrc.org@localhost>
date: Thu Nov 22 09:56:22 2007 +0000
description:
Replaced the usage message with a standard one.
"This is a" was redundant and has been removed.
diffstat:
mk/flavor/pkg/list-dependencies | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
diffs (47 lines):
diff -r bc6c0f6ed74d -r 3a5961222140 mk/flavor/pkg/list-dependencies
--- a/mk/flavor/pkg/list-dependencies Thu Nov 22 09:54:41 2007 +0000
+++ b/mk/flavor/pkg/list-dependencies Thu Nov 22 09:56:22 2007 +0000
@@ -18,26 +18,25 @@
#
# ENVIRONMENT
# AWK
-# This is the path to the awk interpreter.
+# Path to the awk interpreter.
#
# PKGSRCDIR
-# This is the root of the pkgsrc tree.
+# Root directory of the pkgsrc tree.
#
# SED
-# This is the path to the sed command.
+# Path to the sed command.
#
# The following variables are used by the reduce-depends.awk script:
#
# PKG_ADMIN
-# This is the path to the pkg_admin command.
+# Path to the pkg_admin command.
#
# PWD_CMD
-# This is the path to the pwd command.
+# Path to the pwd command.
#
######################################################################
: ${ECHO:=echo}
-: ${TEST:=test}
: ${CAT:=cat}
set -e
@@ -56,9 +55,8 @@
done
}
-if ${TEST} $# != 3;
-then
- ${ECHO} "list-dependencies must be called with 3 arguments" 1>&2
+if [ $# != 3 ]; then
+ echo "usage: list-dependencies bootstrap_depends build_depends depends" 1>&2
exit 1
fi
Home |
Main Index |
Thread Index |
Old Index