commit: a1dea07d10e3511fac6eea86cda30259cc3aa8de
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 06:56:05 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 06:56:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1dea07d
sci-electronics/librepcb: drop "virtx ... || die" from 0.1.6
- since we can't be sure about the return code.
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sci-electronics/librepcb/librepcb-0.1.6.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-electronics/librepcb/librepcb-0.1.6.ebuild
b/sci-electronics/librepcb/librepcb-0.1.6.ebuild
index 69a4c50b530d..e8eb15331383 100644
--- a/sci-electronics/librepcb/librepcb-0.1.6.ebuild
+++ b/sci-electronics/librepcb/librepcb-0.1.6.ebuild
@@ -39,12 +39,12 @@ PATCHES=( "${FILESDIR}"/${P}-muparser-fix.patch )
src_configure() {
local mycmakeargs+=(
- -DUNBUNDLE_QUAZIP=ON
- -DUNBUNDLE_MUPARSER=ON )
+ -DUNBUNDLE_QUAZIP=ON
+ -DUNBUNDLE_MUPARSER=ON )
cmake_src_configure
}
src_test() {
cd "${BUILD_DIR}"/tests/unittests || die
- virtx ./librepcb-unittests
--gtest_filter=-SystemInfoTest.testGetUsername || die
+ virtx ./librepcb-unittests
--gtest_filter=-SystemInfoTest.testGetUsername
}