diff options
author | rillig <rillig@pkgsrc.org> | 2007-11-22 09:56:22 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-11-22 09:56:22 +0000 |
commit | fb9095ac476190bf73aaca0f0674f9d6b326e4e8 (patch) | |
tree | a001a095e96fc85ba21c07c928e02086bb1438bd /mk/flavor | |
parent | f03560708678d9f12d33cb8bc75da42c672d1e57 (diff) | |
download | pkgsrc-fb9095ac476190bf73aaca0f0674f9d6b326e4e8.tar.gz |
Replaced the usage message with a standard one.
"This is a" was redundant and has been removed.
Diffstat (limited to 'mk/flavor')
-rwxr-xr-x | mk/flavor/pkg/list-dependencies | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/mk/flavor/pkg/list-dependencies b/mk/flavor/pkg/list-dependencies index 749ec8c1dda..dd57934b6db 100755 --- a/mk/flavor/pkg/list-dependencies +++ b/mk/flavor/pkg/list-dependencies @@ -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 @@ print_entries() { 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 |