diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-10 05:16:14 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-10 05:16:14 +0000 |
commit | 16a10abab761e2afd4ab13b163f0def181094521 (patch) | |
tree | 0eced7c9a1816adda5f3339ed0e78ef778c69c25 /sqlite/sqlite_2.8.9.oe | |
parent | 16860aa61bfd82ee0ff9943f6daed2dc93dd4c37 (diff) |
Libtool usage fix for readline.
BKrev: 409f101efAiDSd2-chHyfkexfpiQgw
Diffstat (limited to 'sqlite/sqlite_2.8.9.oe')
-rw-r--r-- | sqlite/sqlite_2.8.9.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sqlite/sqlite_2.8.9.oe b/sqlite/sqlite_2.8.9.oe index f50fbe160f..5f50c839f0 100644 --- a/sqlite/sqlite_2.8.9.oe +++ b/sqlite/sqlite_2.8.9.oe @@ -8,9 +8,10 @@ SRC_URI = "http://www.hwaci.com/sw/sqlite/sqlite-${PV}.tar.gz \ S = "${WORKDIR}/sqlite" -inherit autotools +inherit autotools EXTRA_OECONF = "--without-tcl --enable-static --enable-shared" +EXTRA_OEMAKE = "'LIBREADLINE=-L${STAGING_LIBDIR} -lreadline -lncurses' 'LIBTOOL=${S}/${HOST_PREFIX}libtool'" export config_BUILD_CC = "${BUILD_CC}" export config_BUILD_CFLAGS = "${BUILD_CFLAGS}" export config_TARGET_CC = "${CC}" @@ -18,7 +19,7 @@ export config_TARGET_LINK = "${CCLD}" export config_TARGET_CFLAGS = "${CFLAGS}" do_compile () { - oe_runmake 'LIBREADLINE=-L${STAGING_LIBDIR} -lreadline -lncurses' + oe_runmake } do_stage() { |