diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-11-21 04:16:52 -0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2014-12-26 17:46:17 -0800 |
commit | bbb3ee05cb1aedd820f38424c339cda4e43e5977 (patch) | |
tree | edcaaa3a1e33b9934766893c75f4dca45e01624f | |
parent | 3d563139b0ff4c29ecfdd6bb026fc1e84167b03d (diff) | |
download | meta-openembedded-bbb3ee05cb1aedd820f38424c339cda4e43e5977.tar.gz |
postfix.inc: Remove references to buildmachine paths in target makedefs.out
Fixed the buildpaths QA issue:
ERROR: QA Issue: File
/work/core2-64-wrs-linux/postfix/2.11.1-r0/packages-split/postfix/etc/postfix/makedefs.out
in package contained reference to tmpdir [buildpaths]
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-networking/recipes-daemons/postfix/postfix.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/postfix/postfix.inc b/meta-networking/recipes-daemons/postfix/postfix.inc index c58787ed65..63de2a024f 100644 --- a/meta-networking/recipes-daemons/postfix/postfix.inc +++ b/meta-networking/recipes-daemons/postfix/postfix.inc | |||
@@ -201,6 +201,11 @@ do_install_append_class-native() { | |||
201 | ln -sf ../sbin/sendmail.postfix ${D}${bindir}/mailq | 201 | ln -sf ../sbin/sendmail.postfix ${D}${bindir}/mailq |
202 | } | 202 | } |
203 | 203 | ||
204 | do_install_append_class-target() { | ||
205 | # Remove references to buildmachine paths in target makedefs.out | ||
206 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' ${D}/etc/postfix/makedefs.out | ||
207 | } | ||
208 | |||
204 | NATIVE_INSTALL_WORKS = "1" | 209 | NATIVE_INSTALL_WORKS = "1" |
205 | 210 | ||
206 | ALTERNATIVE_${PN} = "sendmail" | 211 | ALTERNATIVE_${PN} = "sendmail" |