diff options
author | foobar <sniper@php.net> | 2005-06-07 21:56:09 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-06-07 21:56:09 +0000 |
commit | d3f1bf4c3513494feeaa578c6375c89b4d8616e1 (patch) | |
tree | 59f4249477283923e194a7e72428a1bc4c14ca41 /scripts | |
parent | 7101cd821ab07f08afd8b3d44027a437991cd21c (diff) | |
download | php-git-d3f1bf4c3513494feeaa578c6375c89b4d8616e1.tar.gz |
- Fix paths when using --libdir and --includedir configure options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.frag | 2 | ||||
-rw-r--r-- | scripts/phpize.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Makefile.frag b/scripts/Makefile.frag index 7ae716eba0..debe7a5beb 100644 --- a/scripts/Makefile.frag +++ b/scripts/Makefile.frag @@ -4,7 +4,7 @@ # phpincludedir = $(includedir)/php -phpbuilddir = $(prefix)/lib/php/build +phpbuilddir = $(libdir)/build BUILD_FILES = \ scripts/phpize.m4 \ diff --git a/scripts/phpize.in b/scripts/phpize.in index 3a90174368..25835a38a6 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -2,8 +2,8 @@ # Variable declaration prefix='@prefix@' -phpdir="$prefix/lib/php/build" -includedir="$prefix/include/php" +phpdir="@libdir@/build" +includedir="@includedir@/php" builddir="`pwd`" FILES_BUILD="mkdep.awk scan_makefile_in.awk shtool libtool.m4" |