diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2015-01-24 16:41:13 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-02-12 19:31:52 +0100 |
commit | 8e60fa7dfa5620e6da03b9d20b15724ed25c56a7 (patch) | |
tree | a36dc14348a3c737a60461e77dd0e22610a9453f /meta-oe/recipes-devtools | |
parent | 8f63850c4d1f348a71958a508f7e50346b04ace1 (diff) | |
download | meta-openembedded-8e60fa7dfa5620e6da03b9d20b15724ed25c56a7.tar.gz |
php: Look for libraries in ${baselib} rather than lib
It fails to look for libraries when we use lib64 for baselib,
use --with-libdir option to specify the correct directory.
$ ./configure --help|grep '\-\-with-libdir'
--with-libdir=NAME Look for libraries in .../NAME rather than .../lib
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/php/php_5.5.20.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/php/php_5.5.20.bb b/meta-oe/recipes-devtools/php/php_5.5.20.bb index 1c0557fa83..cfda14b8b9 100644 --- a/meta-oe/recipes-devtools/php/php_5.5.20.bb +++ b/meta-oe/recipes-devtools/php/php_5.5.20.bb | |||
@@ -56,6 +56,7 @@ EXTRA_OECONF = "--enable-mbstring \ | |||
56 | --enable-wddx \ | 56 | --enable-wddx \ |
57 | --enable-fpm \ | 57 | --enable-fpm \ |
58 | --enable-zip \ | 58 | --enable-zip \ |
59 | --with-libdir=${baselib} \ | ||
59 | --with-gettext=${STAGING_LIBDIR}/.. \ | 60 | --with-gettext=${STAGING_LIBDIR}/.. \ |
60 | --with-zlib=${STAGING_LIBDIR}/.. \ | 61 | --with-zlib=${STAGING_LIBDIR}/.. \ |
61 | --with-iconv=${STAGING_LIBDIR}/.. \ | 62 | --with-iconv=${STAGING_LIBDIR}/.. \ |