]> granicus.if.org Git - php/commitdiff
MFH
authorfoobar <sniper@php.net>
Tue, 1 Jul 2003 16:20:53 +0000 (16:20 +0000)
committerfoobar <sniper@php.net>
Tue, 1 Jul 2003 16:20:53 +0000 (16:20 +0000)
scripts/phpize.in

index 83d60b7c088caf4caccdd1f660e7bf4b6f362548..a9aacbc0ff1cf3bd04c4091e25951c681b2e9350 100644 (file)
@@ -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