diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-12-28 22:23:32 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-02 12:50:13 +0000 |
commit | c49a6935e5b935df48de5b47dbab0771834c44d5 (patch) | |
tree | a1329304582f541fe82de8330c7465ae4115b358 | |
parent | 1d146a8af0d00aef2dd061251b58c6a32c8897dc (diff) | |
download | poky-c49a6935e5b935df48de5b47dbab0771834c44d5.tar.gz |
enchant: fix unrecognised option
Fix the unrecognised option --disable-binreloc, the configure now uses:
AM_CONDITIONAL(WITH_BINRELOC, test "x$br_cv_binreloc" = "xyes")
We can use br_cv_binreloc=no to fix it.
(From OE-Core rev: 00c893c0fe524abb4ae4f1aa6d007ff543fb6afb)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/enchant/enchant_1.6.0.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-support/enchant/enchant_1.6.0.bb b/meta/recipes-support/enchant/enchant_1.6.0.bb index c16a2a816a..5c9359ba72 100644 --- a/meta/recipes-support/enchant/enchant_1.6.0.bb +++ b/meta/recipes-support/enchant/enchant_1.6.0.bb | |||
@@ -17,7 +17,9 @@ SRC_URI = "http://www.abisource.com/downloads/enchant/${PV}/enchant-${PV}.tar.gz | |||
17 | SRC_URI[md5sum] = "de11011aff801dc61042828041fb59c7" | 17 | SRC_URI[md5sum] = "de11011aff801dc61042828041fb59c7" |
18 | SRC_URI[sha256sum] = "2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03f7097f" | 18 | SRC_URI[sha256sum] = "2fac9e7be7e9424b2c5570d8affe568db39f7572c10ed48d4e13cddf03f7097f" |
19 | 19 | ||
20 | EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${prefix} --enable-aspell --disable-binreloc" | 20 | EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${prefix} \ |
21 | --enable-aspell br_cv_binreloc=no \ | ||
22 | " | ||
21 | 23 | ||
22 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" | 24 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" |
23 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" | 25 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" |