aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/attr/ea-acl.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-07-15 18:48:18 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-20 15:25:00 +0100
commitf7de0a4f02cfd021176759fc4ea7ebbc88da8ff8 (patch)
tree0e8c483bea533b10ac33b47640c6d6de1dd962a7 /meta/recipes-support/attr/ea-acl.inc
parentab9543d48262a75f87621fc2b64dcb8ab8caf0bf (diff)
downloadopenembedded-core-contrib-f7de0a4f02cfd021176759fc4ea7ebbc88da8ff8.tar.gz
acl,attr: Fix build failures when NLS is disabled on uclibc
Disable gettext support when NLS is not enabled Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-support/attr/ea-acl.inc')
-rw-r--r--meta/recipes-support/attr/ea-acl.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc
index afe2f1c544..9af5960bae 100644
--- a/meta/recipes-support/attr/ea-acl.inc
+++ b/meta/recipes-support/attr/ea-acl.inc
@@ -32,3 +32,6 @@ FILES_lib${PN}-doc = "${mandir}/man2 \
${mandir}/man3"
BBCLASSEXTEND = "native"
+# Only append ldflags for target recipe and if USE_NLS is enabled
+LDFLAGS_append_libc-uclibc = "${@['', ' -lintl '][(bb.data.getVar('PN', d, True) == bb.data.getVar('BPN', d , True)) and (bb.data.getVar('USE_NLS', d, True) == 'yes')]}"
+EXTRA_OECONF_append_libc-uclibc = "${@['', ' --disable-gettext '][(bb.data.getVar('PN', d, True) == bb.data.getVar('BPN', d , True)) and (bb.data.getVar('USE_NLS', d, True) == 'no')]}"