commit: c78ccc382ed2c7902371f44c5f0cfe179b74676a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 12 15:52:52 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 12 15:55:27 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78ccc38
app-emulation/fuse: Fix src_test to use 'test' target
The upstream Makefile is apparently using a custom 'test' target
to run tests, while the 'check' target is a no-op. Update the ebuild
accordingly.
app-emulation/fuse/fuse-1.5.3.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/app-emulation/fuse/fuse-1.5.3.ebuild
b/app-emulation/fuse/fuse-1.5.3.ebuild
index 3bccba054d3..913346a242f 100644
--- a/app-emulation/fuse/fuse-1.5.3.ebuild
+++ b/app-emulation/fuse/fuse-1.5.3.ebuild
@@ -62,3 +62,7 @@ src_configure() {
econf "${myconf[@]}"
}
+
+src_test() {
+ emake test
+}