From 8edfc50dab0424fe3db9741c3e5ccb9a0e0588a9 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 20 Dec 2015 13:02:51 -0500 Subject: sys-devel/flex: disable building tests when USE=-test #568842 --- sys-devel/flex/flex-2.6.0.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sys-devel') diff --git a/sys-devel/flex/flex-2.6.0.ebuild b/sys-devel/flex/flex-2.6.0.ebuild index b603320301d1..6fc951f26fe8 100644 --- a/sys-devel/flex/flex-2.6.0.ebuild +++ b/sys-devel/flex/flex-2.6.0.ebuild @@ -25,6 +25,14 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${P}-out-of-tree-build.patch #567332 epatch "${FILESDIR}"/${P}-out-of-tree-test.patch #567332 + + # Disable running in the tests/ subdir as it has a bunch of built sources + # that cannot be made conditional (automake limitation). #568842 + if ! use test ; then + sed -i \ + -e '/^SUBDIRS =/,/^$/{/tests/d}' \ + Makefile.in || die + fi } src_configure() { -- cgit v1.2.3-65-gdbad