From: Sascha Schumann Date: Fri, 22 Mar 2002 10:22:41 +0000 (+0000) Subject: de-overquotation X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f93e3ab954dc51aa8f3966132879f2837d57e362;p=php de-overquotation --- 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