diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-04-29 15:38:34 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-04-29 15:40:20 -0700 |
commit | a31bb84e32046d33f50d2ef9c87ca948a05eaeea (patch) | |
tree | ebc2703ecbaea376e6269bb0493f0ff11e9b9fe0 /meta-webserver | |
parent | f04fd1f5e7292170db6121281d6010d684438b85 (diff) | |
download | meta-openembedded-a31bb84e32046d33f50d2ef9c87ca948a05eaeea.tar.gz |
apache2: Deal with -ffile-prefix-map
Filter out -ffile-prefix-map as well along with other -f*-prefix-map
options
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver')
-rw-r--r-- | meta-webserver/recipes-httpd/apache2/apache2_2.4.46.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-webserver/recipes-httpd/apache2/apache2_2.4.46.bb b/meta-webserver/recipes-httpd/apache2/apache2_2.4.46.bb index 197cb83e6..e84f7eaa2 100644 --- a/meta-webserver/recipes-httpd/apache2/apache2_2.4.46.bb +++ b/meta-webserver/recipes-httpd/apache2/apache2_2.4.46.bb | |||
@@ -115,7 +115,7 @@ do_install_append_class-target() { | |||
115 | 115 | ||
116 | sed -i -e 's,${STAGING_DIR_TARGET},,g' \ | 116 | sed -i -e 's,${STAGING_DIR_TARGET},,g' \ |
117 | -e 's,${DEBUG_PREFIX_MAP},,g' \ | 117 | -e 's,${DEBUG_PREFIX_MAP},,g' \ |
118 | -e 's,-fdebug-prefix-map[^ ]*,,g; s,-fmacro-prefix-map[^ ]*,,g' \ | 118 | -e 's,-fdebug-prefix-map[^ ]*,,g; s,-fmacro-prefix-map[^ ]*,,g; s,-ffile-prefix-map[^ ]*,,g' \ |
119 | -e 's,${HOSTTOOLS_DIR}/,,g' \ | 119 | -e 's,${HOSTTOOLS_DIR}/,,g' \ |
120 | -e 's,APU_INCLUDEDIR = .*,APU_INCLUDEDIR = ,g' \ | 120 | -e 's,APU_INCLUDEDIR = .*,APU_INCLUDEDIR = ,g' \ |
121 | -e 's,APU_CONFIG = .*,APU_CONFIG = ,g' ${D}${datadir}/apache2/build/config_vars.mk | 121 | -e 's,APU_CONFIG = .*,APU_CONFIG = ,g' ${D}${datadir}/apache2/build/config_vars.mk |
@@ -123,7 +123,7 @@ do_install_append_class-target() { | |||
123 | sed -i -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ | 123 | sed -i -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ |
124 | -e 's,${DEBUG_PREFIX_MAP},,g' \ | 124 | -e 's,${DEBUG_PREFIX_MAP},,g' \ |
125 | -e 's,${RECIPE_SYSROOT},,g' \ | 125 | -e 's,${RECIPE_SYSROOT},,g' \ |
126 | -e 's,-fdebug-prefix-map[^ ]*,,g; s,-fmacro-prefix-map[^ ]*,,g' \ | 126 | -e 's,-fdebug-prefix-map[^ ]*,,g; s,-fmacro-prefix-map[^ ]*,,g; s,-fmacro-prefix-map[^ ]*,,g' \ |
127 | -e 's,APU_INCLUDEDIR = .*,APU_INCLUDEDIR = ,g' \ | 127 | -e 's,APU_INCLUDEDIR = .*,APU_INCLUDEDIR = ,g' \ |
128 | -e 's,".*/configure","configure",g' ${D}${datadir}/apache2/build/config.nice | 128 | -e 's,".*/configure","configure",g' ${D}${datadir}/apache2/build/config.nice |
129 | 129 | ||