diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-05-12 17:52:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-05-12 17:55:27 +0200 |
commit | c78ccc382ed2c7902371f44c5f0cfe179b74676a (patch) | |
tree | 8b09a8a91842c805d8e0dfb1903ce401a65af1bf /app-emulation/fuse | |
parent | app-emulation/fuse-utils: remove old version 1.3.4 (diff) | |
download | gentoo-c78ccc382ed2c7902371f44c5f0cfe179b74676a.tar.gz gentoo-c78ccc382ed2c7902371f44c5f0cfe179b74676a.tar.bz2 gentoo-c78ccc382ed2c7902371f44c5f0cfe179b74676a.zip |
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.
Diffstat (limited to 'app-emulation/fuse')
-rw-r--r-- | app-emulation/fuse/fuse-1.5.3.ebuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app-emulation/fuse/fuse-1.5.3.ebuild b/app-emulation/fuse/fuse-1.5.3.ebuild index 3bccba054d38..913346a242fb 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 +} |