diff options
author | Sascha Schumann <sas@php.net> | 2002-03-22 10:22:41 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-03-22 10:22:41 +0000 |
commit | f93e3ab954dc51aa8f3966132879f2837d57e362 (patch) | |
tree | c55c4a66c65e0c3e6a5d58625bf1950e80b6d89b /build | |
parent | e4a5210bbf67d17f976e350cad9ce257cf4cc440 (diff) | |
download | php-git-f93e3ab954dc51aa8f3966132879f2837d57e362.tar.gz |
de-overquotation
Diffstat (limited to 'build')
-rw-r--r-- | build/genif.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/build/genif.sh b/build/genif.sh index 947ec2ffaa..cb5233b5ac 100644 --- a/build/genif.sh +++ b/build/genif.sh @@ -1,24 +1,24 @@ #! /bin/sh -# $Id: genif.sh,v 1.2 2001-03-30 14:02:20 sas Exp $ +# $Id: genif.sh,v 1.3 2002-03-22 10:22:41 sas Exp $ # replacement for genif.pl -infile="$1" +infile=$1 shift -srcdir="$1" +srcdir=$1 shift -extra_module_ptrs="$1" +extra_module_ptrs=$1 shift -awk="$1" +awk=$1 shift -if test "$infile" = "" -o "$srcdir" = ""; then +if test -z "$infile" || test -z "$srcdir"; then echo "please supply infile and srcdir" exit 1 fi -module_ptrs="$extra_module_ptrs" -header_list="" +module_ptrs=$extra_module_ptrs +header_list= olddir=`pwd` cd $srcdir |