diff options
author | Joe Slater <jslater@windriver.com> | 2014-03-27 13:38:56 -0700 |
---|---|---|
committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-04-06 13:29:32 +0100 |
commit | a60bf8c73adecf68d048c7725773d0772b22873e (patch) | |
tree | 5d4aace259ad6034a1af022b5398f0ab74ae5cd1 /meta-webserver | |
parent | bc969d3705c45928de8525ef3d2d9d2867311864 (diff) | |
download | meta-openembedded-a60bf8c73adecf68d048c7725773d0772b22873e.tar.gz |
modphp: add phpize to scan for absolute paths
sstate processing for items in sysroot scans certain
file name patterns for absolute paths to be adjusted
when items are installed into sysroot from sstate.
phpize is not one of these patterns (surprise!) so we
add it to the list.
Signed-off-by: Joe Slater <jslater@windriver.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r-- | meta-webserver/recipes-php/modphp/modphp5.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-webserver/recipes-php/modphp/modphp5.inc b/meta-webserver/recipes-php/modphp/modphp5.inc index aa213e3ab4..d646fd19b0 100644 --- a/meta-webserver/recipes-php/modphp/modphp5.inc +++ b/meta-webserver/recipes-php/modphp/modphp5.inc | |||
@@ -92,6 +92,10 @@ php_sysroot_preprocess () { | |||
92 | sed -i 's!^include_dir=.*!include_dir=${STAGING_INCDIR}/php!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/php-config | 92 | sed -i 's!^include_dir=.*!include_dir=${STAGING_INCDIR}/php!' ${SYSROOT_DESTDIR}${bindir_crossscripts}/php-config |
93 | } | 93 | } |
94 | 94 | ||
95 | # phpize is not scanned for absolute paths by default (but php-config is). | ||
96 | # | ||
97 | SSTATE_SCAN_FILES += "phpize" | ||
98 | |||
95 | RDEPENDS_${PN} = "apache2" | 99 | RDEPENDS_${PN} = "apache2" |
96 | 100 | ||
97 | FILES_${PN} = "${libdir}/apache2 ${sysconfdir}" | 101 | FILES_${PN} = "${libdir}/apache2 ${sysconfdir}" |