diff options
-rw-r--r-- | scripts/phpize.in | 2 | ||||
-rw-r--r-- | scripts/phpize.m4 | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in index f4530667cb..3a90174368 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -114,7 +114,7 @@ phpize_copy_files() (cd "$phpdir" && cp $FILES_BUILD "$builddir"/build) (cd "$phpdir" && cp $FILES "$builddir") - (cd "$builddir" && cat ./build/libtool.m4 acinclude.m4 > aclocal.m4) + (cd "$builddir" && cat acinclude.m4 ./build/libtool.m4 > aclocal.m4) } phpize_replace_prefix() diff --git a/scripts/phpize.m4 b/scripts/phpize.m4 index 916004cea4..fd3caa0c26 100644 --- a/scripts/phpize.m4 +++ b/scripts/phpize.m4 @@ -1,5 +1,8 @@ dnl This file becomes configure.in for self-contained extensions. +divert(1) + +AC_PREREQ(2.13) AC_INIT(config.m4) PHP_CONFIG_NICE(config.nice) |