diff options
| author | Sean Finney <seanius@debian.org> | 2009-09-19 23:00:15 +0200 |
|---|---|---|
| committer | Sean Finney <seanius@debian.org> | 2009-09-19 23:00:15 +0200 |
| commit | 10544de9849f8704aaeb54388e9795f2273202a0 (patch) | |
| tree | bc8df5cffe263633f72ae3119f5127a94e0e323d /scripts | |
| parent | c785001d106afb1d4eb98c811a1bf2e4e06065bf (diff) | |
| download | php-10544de9849f8704aaeb54388e9795f2273202a0.tar.gz | |
Imported Upstream version 5.2.11.dfsg.1upstream/5.2.11.dfsg.1
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/apache/conffix.awk | 2 | ||||
| -rw-r--r-- | scripts/apache/htaccessfix.awk | 2 | ||||
| -rw-r--r-- | scripts/dev/check_parameters.php | 2 | ||||
| -rwxr-xr-x | scripts/dev/conv_z_macros | 2 | ||||
| -rw-r--r-- | scripts/phpize.in | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/scripts/apache/conffix.awk b/scripts/apache/conffix.awk index 30d488d6c..2b506e55c 100644 --- a/scripts/apache/conffix.awk +++ b/scripts/apache/conffix.awk @@ -1,4 +1,4 @@ -# $Id: conffix.awk,v 1.2 1999/08/07 15:31:57 zeev Exp $ +# $Id: conffix.awk 11765 1999-08-07 15:31:57Z zeev $ /^[ \t]*php3_*/ { phpcommand=substr($1,6) diff --git a/scripts/apache/htaccessfix.awk b/scripts/apache/htaccessfix.awk index 2523472c3..e43668c6d 100644 --- a/scripts/apache/htaccessfix.awk +++ b/scripts/apache/htaccessfix.awk @@ -1,4 +1,4 @@ -# $Id: htaccessfix.awk,v 1.2 1999/08/07 15:31:57 zeev Exp $ +# $Id: htaccessfix.awk 11765 1999-08-07 15:31:57Z zeev $ /^[ \t]*php3_*/ { phpcommand=substr($1,6) diff --git a/scripts/dev/check_parameters.php b/scripts/dev/check_parameters.php index c04d4b8d1..1cde038f9 100644 --- a/scripts/dev/check_parameters.php +++ b/scripts/dev/check_parameters.php @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: check_parameters.php,v 1.1.2.4 2007/01/01 19:32:09 iliaa Exp $ */ +/* $Id: check_parameters.php 226204 2007-01-01 19:32:10Z iliaa $ */ define('REPORT_LEVEL', 2); // 0 reports less false-positives. up to level 5. diff --git a/scripts/dev/conv_z_macros b/scripts/dev/conv_z_macros index fa1700568..100dd93aa 100755 --- a/scripts/dev/conv_z_macros +++ b/scripts/dev/conv_z_macros @@ -16,7 +16,7 @@ # | Author: Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: conv_z_macros,v 1.4.2.1.2.1 2007/01/01 19:32:09 iliaa Exp $ +# $Id: conv_z_macros 226204 2007-01-01 19:32:10Z iliaa $ for i in $@; do echo -n "Processing $i... " diff --git a/scripts/phpize.in b/scripts/phpize.in index 3adb8c8da..40ccc77b1 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -121,7 +121,7 @@ phpize_check_autotools() test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader - if ! test -x "$PHP_AUTOCONF" && ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then + if test ! -x "$PHP_AUTOCONF" && test ! -x "`$php_shtool path $PHP_AUTOCONF`"; then cat <<EOF Cannot find autoconf. Please check your autoconf installation and the \$PHP_AUTOCONF environment variable. Then, rerun this script. @@ -129,7 +129,7 @@ Cannot find autoconf. Please check your autoconf installation and the EOF exit 1 fi - if ! test -x "$PHP_AUTOHEADER" && ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then + if test ! -x "$PHP_AUTOHEADER" && test ! -x "`$php_shtool path $PHP_AUTOHEADER`"; then cat <<EOF Cannot find autoheader. Please check your autoconf installation and the \$PHP_AUTOHEADER environment variable. Then, rerun this script. |
