summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-07-01 16:20:32 +0000
committerfoobar <sniper@php.net>2003-07-01 16:20:32 +0000
commitf6cafd6041b9598d889dc38702ea3ea02bb476b1 (patch)
tree567921fb68a8b48bbe3ae5280ecef57b77e6711c /scripts/phpize.in
parent82194d2766eae7831e6a98200f59ca5d940fb229 (diff)
downloadphp-git-f6cafd6041b9598d889dc38702ea3ea02bb476b1.tar.gz
Fix previous commit. (never do 2 things same time :)
Diffstat (limited to 'scripts/phpize.in')
-rw-r--r--scripts/phpize.in38
1 files changed, 23 insertions, 15 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 051d334d7e..f0eec12378 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -12,27 +12,35 @@ CLEAN_FILES="$FILES *.lo *.la *.o .deps .libs/ build/ include/ modules/ install-
aclocal.m4 config.h config.h.in conftest* ltmain.sh libtool config.cache \
config.log config.status Makefile Makefile.fragments Makefile.objects"
-# Sanity check
-if test ! -r config.m4 && test "$1" != "--help"; then
- echo "Cannot find config.m4. "
- echo "Make sure that you run $0 in the top level source directory of the module"
- exit 1
-fi
-
-# Usage
-case "$args" in
+case "$1" in
+ # Cleanup
--clean)
- # Cleanup
- echo "Cleaning.."
- for i in $CLEAN_FILES; do
- test -e $i && rm -rf $i
- done
- exit 0
+ if test -r config.m4; then
+ echo "Cleaning.."
+ for i in $CLEAN_FILES; do
+ test -e $i && rm -rf $i
+ done
+ exit 0
+ else
+ echo "Cannot find config.m4. "
+ echo "Make sure that you run '$0 --clean' in the top level source directory of the module"
+ echo
+ exit 1
+ fi
;;
+ # Usage
--help)
echo "Usage: $0 [--clean|--help]"
exit 1
;;
+ *)
+ if test ! -r config.m4; then
+ echo "Cannot find config.m4. "
+ echo "Make sure that you run '$0' in the top level source directory of the module"
+ echo
+ exit 1
+ fi
+ ;;
esac
test -d build || mkdir build