diff options
author | SVN Migration <svn@php.net> | 2001-08-12 04:31:15 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2001-08-12 04:31:15 +0000 |
commit | 64da1e7f4e0c11b32a07812abf15b264666a7160 (patch) | |
tree | 94164a4d7fdbe2c473d432fdde13da21f614a14d /pear/scripts/phpize.in | |
parent | ff39e51fdf5b17a20b4ac447e66c3048f03c29d3 (diff) | |
download | php-git-BEFORE_EXP_MERGE.tar.gz |
This commit was manufactured by cvs2svn to create tag 'BEFORE_EXP_MERGE'.BEFORE_EXP_MERGE
Diffstat (limited to 'pear/scripts/phpize.in')
-rw-r--r-- | pear/scripts/phpize.in | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pear/scripts/phpize.in b/pear/scripts/phpize.in deleted file mode 100644 index 33b5ad2cfb..0000000000 --- a/pear/scripts/phpize.in +++ /dev/null @@ -1,31 +0,0 @@ -#! /bin/sh - -prefix='@prefix@' -phpdir="$prefix/lib/php/build" -builddir="`pwd`" -FILES_BUILD="dynlib.mk fastgen.sh library.mk ltlib.mk mkdep.awk program.mk rules.mk rules_common.mk rules_pear.mk shtool" -FILES="acinclude.m4 dynlib.m4" - -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" - exit 1 -fi - -test -d build || mkdir build - -(cd $phpdir && cp $FILES_BUILD $builddir/build) -(cd $phpdir && cp $FILES $builddir) - -mv build/rules_pear.mk build/rules.mk - -sed \ --e "s#@prefix@#$prefix#" \ -< $phpdir/pear.m4 > configure.in - -touch install-sh mkinstalldirs missing - -aclocal -autoconf -autoheader -libtoolize -f -c |