From ab6604a68ee222119673d5b02f1c4c5b85438667 Mon Sep 17 00:00:00 2001 From: Arfrever Frehtes Taifersar Arahesis Date: Fri, 23 Oct 2015 21:18:51 +0200 Subject: [PATCH] dev-db/sqlite: Fix building with USE="-tcl -test tools". --- dev-db/sqlite/sqlite-3.9.1.ebuild | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/dev-db/sqlite/sqlite-3.9.1.ebuild b/dev-db/sqlite/sqlite-3.9.1.ebuild index 90bf609b6dc0e..235974de7fd9c 100644 --- a/dev-db/sqlite/sqlite-3.9.1.ebuild +++ b/dev-db/sqlite/sqlite-3.9.1.ebuild @@ -162,13 +162,9 @@ multilib_src_configure() { # static-libs USE flag. options+=($(use_enable static-libs static)) - # tcl, test USE flags. + # tcl, test, tools USE flags. if full_tarball; then - if use tcl || use test; then - options+=(--enable-tcl) - else - options+=(--disable-tcl) - fi + options+=(--enable-tcl) fi if [[ "${CHOST}" == *-mint* ]]; then @@ -189,7 +185,7 @@ multilib_src_configure() { } multilib_src_compile() { - emake TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" + emake HAVE_TCL="$(usex tcl 1 "")" TCLLIBDIR="${EPREFIX}/usr/$(get_libdir)/${P}" if use tools && multilib_is_native_abi; then emake showdb showjournal showstat4 showwal sqldiff sqlite3_analyzer @@ -202,7 +198,7 @@ multilib_src_test() { return fi - emake $(use debug && echo fulltest || echo test) + emake HAVE_TCL="$(usex tcl 1 "")" $(use debug && echo fulltest || echo test) } multilib_src_install() {