diff options
author | Stig Bakken <ssb@php.net> | 2001-08-28 12:15:01 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-08-28 12:15:01 +0000 |
commit | 43c2025ac2dab0746e61f41d0c03a431c9f27cac (patch) | |
tree | b1687d0be26e6d35d46a1e80be6e0e6a0f489f0a /build | |
parent | c93ec77f159c3482382827e4498cc6d4edf9d52d (diff) | |
download | php-git-43c2025ac2dab0746e61f41d0c03a431c9f27cac.tar.gz |
* output brief usage when called without params
Diffstat (limited to 'build')
-rwxr-xr-x | build/fastgen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/fastgen.sh b/build/fastgen.sh index b9742a9dfe..e641bb6860 100755 --- a/build/fastgen.sh +++ b/build/fastgen.sh @@ -16,9 +16,13 @@ # | Authors: Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: fastgen.sh,v 1.10 2001-05-20 22:04:23 sas Exp $ +# $Id: fastgen.sh,v 1.11 2001-08-28 12:15:01 ssb Exp $ # +if test "$#" = "0"; then + echo "Usage: fastgen.sh <srcdir> <mkdir_p> <bsdmakefile_p> <file>" +fi + srcdir=$1 shift |