diff options
author | Sam James <sam@gentoo.org> | 2021-10-31 01:25:49 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-31 01:28:47 +0000 |
commit | 4efd4cbe4ce902fdf3cb1d5dba76c93d47e9cbbb (patch) | |
tree | 070613fba394a353ed6d8c7de128c46266f95292 /sys-fs/e2fsprogs | |
parent | sys-fs/e2fsprogs: merge sys-libs/e2fsprogs-libs back in (unkeyworded) (diff) | |
download | gentoo-4efd4cbe4ce902fdf3cb1d5dba76c93d47e9cbbb.tar.gz gentoo-4efd4cbe4ce902fdf3cb1d5dba76c93d47e9cbbb.tar.bz2 gentoo-4efd4cbe4ce902fdf3cb1d5dba76c93d47e9cbbb.zip |
sys-fs/e2fsprogs: run tests for non-native ABI in new merged -libs ebuild
Bug: https://bugs.gentoo.org/806875
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs/e2fsprogs')
-rw-r--r-- | sys-fs/e2fsprogs/e2fsprogs-1.46.4-r50.ebuild | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.46.4-r50.ebuild b/sys-fs/e2fsprogs/e2fsprogs-1.46.4-r50.ebuild index 328bca250b30..6eb62630726d 100644 --- a/sys-fs/e2fsprogs/e2fsprogs-1.46.4-r50.ebuild +++ b/sys-fs/e2fsprogs/e2fsprogs-1.46.4-r50.ebuild @@ -129,6 +129,16 @@ multilib_src_compile() { fi } +multilib_src_test() { + if multilib_is_native_abi ; then + emake V=1 check + else + # For non-native, there's no binaries to test. Just libraries. + emake -C lib/et V=1 check + emake -C lib/ss V=1 check + fi +} + multilib_src_install() { if ! multilib_is_native_abi || ! use tools ; then emake -C lib/et V=1 DESTDIR="${D}" install |