diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-10-29 23:08:22 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-10-29 23:08:22 +0000 |
commit | 113d446f1e5db3da857162e1ee082f04379023f9 (patch) | |
tree | d7fc65fe55dc6a4d98df54d43ddda4b844da9c73 /packages/modphp | |
parent | 75d44e35ba889eff8e594625050ae911a4eadd9d (diff) |
Remove final references to BUILD_SYS in staging paths
Diffstat (limited to 'packages/modphp')
-rw-r--r-- | packages/modphp/modphp5.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/modphp/modphp5.inc b/packages/modphp/modphp5.inc index b4bdd15f5b..202cacc75b 100644 --- a/packages/modphp/modphp5.inc +++ b/packages/modphp/modphp5.inc @@ -29,14 +29,14 @@ EXTRA_OECONF = "--with-apxs2=${STAGING_BINDIR_NATIVE}/apxs \ --disable-simplexml \ --disable-libxml \ --disable-dom \ - --with-zlib --with-zlib-dir=${STAGING_LIBDIR}/.. \ + --with-zlib --with-zlib-dir=${STAGING_DIR_NATIVE}${layout_exec_prefix} \ --with-config-file-path=/etc/php/apache2-php5" -# --with-libxml-dir=${STAGING_DIR}/${BUILD_SYS}/ \ +# --with-libxml-dir=${STAGING_DIR_NATIVE}${layout_exec_prefix} \ # to get postgres support, add it to the DEPENDS above # and uncomment this line. similar for mysql -#EXTRA_OECONF += " --with-pgsql=${STAGING_LIBDIR}/.." +#EXTRA_OECONF += " --with-pgsql=${STAGING_DIR_HOST}${layout_exec_prefix}" acpaths = "" @@ -45,7 +45,7 @@ acpaths = "" # which breaks everything... # do_configure() { - export PHP_LIBXML_DIR=${STAGING_DIR}/${BUILD_SYS} + export PHP_LIBXML_DIR=${STAGING_DIR_NATIVE}${layout_exec_prefix} oe_runconf } |