diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-01-18 16:02:32 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-19 11:29:06 +0000 |
commit | 87c47a6696add8dc532e83471b74211a1f53f317 (patch) | |
tree | d360cd157ea8d24222e867e3419ceee4d7306f26 | |
parent | 0f4f139dd1a6e2c58f26a109b0a94ce01aca272b (diff) | |
download | openembedded-core-contrib-87c47a6696add8dc532e83471b74211a1f53f317.tar.gz |
enchant: refactor packages for staticdev
Signed-off-by: Saul Wold <sgw@linux.intel.com>
-rw-r--r-- | meta/recipes-support/enchant/enchant_1.6.0.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-support/enchant/enchant_1.6.0.bb b/meta/recipes-support/enchant/enchant_1.6.0.bb index a3ef37912ac..25178f57c86 100644 --- a/meta/recipes-support/enchant/enchant_1.6.0.bb +++ b/meta/recipes-support/enchant/enchant_1.6.0.bb @@ -10,7 +10,7 @@ RDEPENDS_${PN} = "aspell" inherit autotools pkgconfig -PR = "r1" +PR = "r2" SRC_URI = "http://www.abisource.com/downloads/enchant/${PV}/enchant-${PV}.tar.gz" @@ -20,6 +20,7 @@ SRC_URI[sha256sum] = "2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03 EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${prefix} --enable-aspell --disable-binreloc" FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${PN} ${libdir}/${PN}/*.so" -FILES_${PN}-dev += "${libdir}/${PN}/*{SOLIBSDEV} ${libdir}/${PN}/*.la ${libdir}/${PN}/*.a" +FILES_${PN}-dev += "${libdir}/${PN}/*{SOLIBSDEV} ${libdir}/${PN}/*.la" +FILES_${PN}-staticdev += "${libdir}/${PN}/*.a" export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " |