diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-06-05 10:56:00 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-06-05 10:56:00 +0000 |
commit | ebfda772304b391ba19094c31c8682456de11b07 (patch) | |
tree | ace8b389a7c0ce24cfb88cf11b213f8740bcc4a4 /packages | |
parent | 7c8bda8ef0600aeac694c023bf3454da80f1b55b (diff) |
abiword_2.4.4.bb : add -Wl,--export-dynamic to the LDFLAGS in the .bb
file. On x86 builds it seems to get this argument by luck from gmodule
build arguments. This is needed to get abiword plugins to see symbols
defined within abiword, and thus abiword-plugins now work.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/abiword/abiword_2.4.4.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/abiword/abiword_2.4.4.bb b/packages/abiword/abiword_2.4.4.bb index 8b1ed52d8a..3099e0ba97 100644 --- a/packages/abiword/abiword_2.4.4.bb +++ b/packages/abiword/abiword_2.4.4.bb @@ -6,7 +6,7 @@ LICENSE="GPLv2" DEPENDS = "perl-native libgsf libgnomeprint libgnomeprintui libglade libfribidi enchant jpeg libpng perl glibc libxml2" RDEPENDS = "enchant glibc-gconv-ibm850 glibc-gconv-cp1252 \ glibc-gconv-iso8859-15 glibc-gconv-iso8859-1" -PR="r0" +PR="r1" SRC_URI = "http://www.abiword.org/downloads/abiword/${PV}/source/abiword-${PV}.tar.gz" S = "${WORKDIR}/abiword-${PV}/abi" @@ -34,6 +34,8 @@ PARALLEL_MAKE="" EXTRA_OECONF = "--disable-pspell --enable-enchant" +LDFLAGS += "-Wl,--export-dynamic" + do_install_append() { install -d ${D}${datadir}/pixmaps/ mv ${D}${datadir}/icons/* ${D}${datadir}/pixmaps/ |