diff options
author | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2022-02-15 13:53:21 -0500 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2022-02-24 11:04:25 -0500 |
commit | 893b162fd8000db534292f8860fe73497e714ed1 (patch) | |
tree | ff94c91366371833ff8b29e029f400e379ba91ad /net-wireless/uhd | |
parent | net-wireless/uhd: qa fixes (diff) | |
download | gentoo-893b162fd8000db534292f8860fe73497e714ed1.tar.gz gentoo-893b162fd8000db534292f8860fe73497e714ed1.tar.bz2 gentoo-893b162fd8000db534292f8860fe73497e714ed1.zip |
net-wireless/uhd: fix phase order
Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos@gentoo.org>
Diffstat (limited to 'net-wireless/uhd')
-rw-r--r-- | net-wireless/uhd/uhd-4.1.0.4.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/net-wireless/uhd/uhd-4.1.0.4.ebuild b/net-wireless/uhd/uhd-4.1.0.4.ebuild index d522d556fc21..ef4be3637e18 100644 --- a/net-wireless/uhd/uhd-4.1.0.4.ebuild +++ b/net-wireless/uhd/uhd-4.1.0.4.ebuild @@ -93,6 +93,13 @@ src_configure() { ) cmake_src_configure } + +src_test() { + #we can disable the python tests + #ctest -E 'py*' + PYTHON_PATH=python/ cmake_src_test +} + src_install() { cmake_src_install python_optimize @@ -138,9 +145,3 @@ src_install() { insinto /usr/share/${PN} doins -r "${WORKDIR}/images" } - -src_test() { - #we can disable the python tests - #ctest -E 'py*' - PYTHON_PATH=python/ cmake_src_test -} |