diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2015-09-30 01:49:03 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-13 12:28:14 +0200 |
commit | ac27acf362060b60fb025ea3578858f2bce62425 (patch) | |
tree | 7f59363f1c02fd45294f1f98d5ebb8d9ed3ca3c9 /meta-webserver/recipes-httpd | |
parent | f2a41be9f09318c44b8d34b96fb6923d309616d9 (diff) | |
download | meta-openembedded-ac27acf362060b60fb025ea3578858f2bce62425.tar.gz |
apache2: cleanup buildpaths for target stuffs
Those buildpaths were generated from configure substitutions, they are
required for cross-compiling, but obviously they should be cleaned up
from target stuffs.
Cleanup buildpaths from config_vars.mk and config.nice:
* remove ${STAGING_DIR_HOST} from CC, CFLAGS ...
* set APU_INCLUDEDIR, APU_CONFIG as empty
* remove buildpath from configure line
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-webserver/recipes-httpd')
-rw-r--r-- | meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb index a44babdc6..af5c72a5f 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.16.bb | |||
@@ -97,6 +97,15 @@ do_install_append() { | |||
97 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service | 97 | sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/apache2.service |
98 | } | 98 | } |
99 | 99 | ||
100 | do_install_append_class-target() { | ||
101 | sed -i -e 's,${STAGING_DIR_HOST},,g' \ | ||
102 | -e 's,APU_INCLUDEDIR = .*,APU_INCLUDEDIR = ,g' \ | ||
103 | -e 's,APU_CONFIG = .*,APU_CONFIG = ,g' ${D}${datadir}/apache2/build/config_vars.mk | ||
104 | |||
105 | sed -i -e 's,${STAGING_DIR_HOST},,g' \ | ||
106 | -e 's,".*/configure","configure",g' ${D}${datadir}/apache2/build/config.nice | ||
107 | } | ||
108 | |||
100 | SYSROOT_PREPROCESS_FUNCS += "apache_sysroot_preprocess" | 109 | SYSROOT_PREPROCESS_FUNCS += "apache_sysroot_preprocess" |
101 | 110 | ||
102 | apache_sysroot_preprocess () { | 111 | apache_sysroot_preprocess () { |