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-06 11:13:55 +0000 |
commit | acfd890a4fe7fb1b3208d8beb8e08922f178d06f (patch) | |
tree | b8698bd5ccc1e22893ef7175cbfbde14f6e22afd /meta/recipes-support/enchant | |
parent | 6a02acbc33fe5414db3908d283e1364fbb38b256 (diff) | |
download | poky-acfd890a4fe7fb1b3208d8beb8e08922f178d06f.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: 4cee162c292915e68e8efcab68a31ba0e48105e9)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/enchant')
-rw-r--r-- | meta/recipes-support/enchant/enchant_1.6.0.bb | 2 |
1 files changed, 0 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 d17684d4c2..97a47614cd 100644 --- a/meta/recipes-support/enchant/enchant_1.6.0.bb +++ b/meta/recipes-support/enchant/enchant_1.6.0.bb | |||
@@ -24,8 +24,6 @@ EXTRA_OECONF = "--with-aspell-prefix=${STAGING_DIR_HOST}${prefix} \ | |||
24 | 24 | ||
25 | export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " | 25 | export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " |
26 | 26 | ||
27 | export CXXFLAGS += " -L${STAGING_LIBDIR} -lstdc++ " | ||
28 | |||
29 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" | 27 | FILES_${PN} = "${bindir} ${libdir}/*${SOLIBS} ${datadir}/${BPN} ${libdir}/${BPN}/*.so" |
30 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" | 28 | FILES_${PN}-dev += "${libdir}/${BPN}/*{SOLIBSDEV} ${libdir}/${BPN}/*.la" |
31 | FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a" | 29 | FILES_${PN}-staticdev += "${libdir}/${BPN}/*.a" |