summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/attr/ea-acl.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/attr/ea-acl.inc')
-rw-r--r--meta/recipes-support/attr/ea-acl.inc17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc
index 2ef138957e..22d7848fbf 100644
--- a/meta/recipes-support/attr/ea-acl.inc
+++ b/meta/recipes-support/attr/ea-acl.inc
@@ -35,3 +35,20 @@ BBCLASSEXTEND = "native"
35# Only append ldflags for target recipe and if USE_NLS is enabled 35# Only append ldflags for target recipe and if USE_NLS is enabled
36LDFLAGS_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')]}" 36LDFLAGS_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')]}"
37EXTRA_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')]}" 37EXTRA_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')]}"
38
39fix_symlink () {
40 # Remove bad symlinks & create the correct symlinks
41 if test -L ${libdir}/lib${BPN}.so ; then
42 rm -rf ${libdir}/lib${BPN}.so
43 ln -sf ${base_libdir}/lib${BPN}.so ${libdir}/lib${BPN}.so
44 fi
45 if test -L ${base_libdir}/lib${BPN}.a ; then
46 rm -rf ${base_libdir}/lib${BPN}.a
47 ln -sf ${libdir}/lib${BPN}.a ${base_libdir}/lib${BPN}.a
48 fi
49 if test -L ${base_libdir}/lib${BPN}.la ; then
50 rm -rf ${base_libdir}/lib${BPN}.la
51 ln -sf ${libdir}/lib${BPN}.la ${base_libdir}/lib${BPN}.la
52 fi
53}
54SSTATEPOSTINSTFUNCS_virtclass-native += "fix_symlink"