commit: 1c766603e2adccf6e6d4404c12ad2c007aa53a15
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 15:14:57 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Feb 13 15:43:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c766603
dev-cpp/xtensor: use cmake_build instead of emake
Signed-off-by: Kamal Abdellatif <gentoo.kamal <AT> tgf.pw>
dev-cpp/xtensor/xtensor-0.24.4.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
index a2d7e9ada..d3d983ffc 100644
--- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild
+++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-# required because of manuall install in src_install
+# required because of manual install in src_install
CMAKE_MAKEFILE_GENERATOR="emake"
PYTHON_COMPAT=( python3_{9..11} )
@@ -88,9 +88,9 @@ src_test() {
}
src_install() {
- # default install starts compiling more tests
- # that do not affect the header-only install image
- DESTDIR="${D}" emake -C "${BUILD_DIR}" install/fast "$@"
+ # Default install target depends on tests with USE=test enabled.
+ # However, this is a header-only library.
+ DESTDIR="${D}" cmake_build install/fast "$@"
einstalldocs
}