diff options
Diffstat (limited to 'sys-libs/ldb/ldb-2.6.2.ebuild')
-rw-r--r-- | sys-libs/ldb/ldb-2.6.2.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys-libs/ldb/ldb-2.6.2.ebuild b/sys-libs/ldb/ldb-2.6.2.ebuild index 318abf8bb390..12c6ba830153 100644 --- a/sys-libs/ldb/ldb-2.6.2.ebuild +++ b/sys-libs/ldb/ldb-2.6.2.ebuild @@ -17,7 +17,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv IUSE="doc ldap +lmdb python test" REQUIRED_USE="${PYTHON_REQUIRED_USE} - test? ( lmdb python )" + test? ( lmdb )" RESTRICT="!test? ( test )" @@ -99,6 +99,12 @@ src_prepare() { check_samba_dep_versions + if use test && ! use python ; then + # We want to be able to run tests w/o Python as it makes + # automated testing much easier (as USE=python isn't default-enabled). + truncate -s0 tests/python/{repack,index,api,crash}.py || die + fi + multilib_copy_sources } |