diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-07-21 23:05:49 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-07-21 23:05:49 +0000 |
commit | bc22284e4e81a274b7b7db2905da58a0101a63fb (patch) | |
tree | 26eb34e78f57917cde1d54a72d2bb536eb5badee /mkinstalldirs | |
parent | 25628b2beba8c642adcb86e6d25c9ac67ac11f70 (diff) | |
download | idutils-bc22284e4e81a274b7b7db2905da58a0101a63fb.tar.gz idutils-bc22284e4e81a274b7b7db2905da58a0101a63fb.tar.bz2 idutils-bc22284e4e81a274b7b7db2905da58a0101a63fb.zip |
* remove generated files from CVS
* apply EDITOR env variable patch
* updated ChangeLog
Diffstat (limited to 'mkinstalldirs')
-rwxr-xr-x | mkinstalldirs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mkinstalldirs b/mkinstalldirs index 6fbe5e1..5d26a48 100755 --- a/mkinstalldirs +++ b/mkinstalldirs @@ -1,7 +1,7 @@ #! /bin/sh # mkinstalldirs --- make directory hierarchy -scriptversion=2004-02-15.20 +scriptversion=2005-02-02.21 # Original author: Noah Friedman <friedman@prep.ai.mit.edu> # Created: 1993-05-16 @@ -27,7 +27,7 @@ while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" - exit 0 + exit $? ;; -m) # -m PERM arg shift @@ -37,7 +37,7 @@ while test $# -gt 0 ; do ;; --version) echo "$0 $scriptversion" - exit 0 + exit $? ;; --) # stop option processing shift |