diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-02-07 11:51:59 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-02-07 22:49:18 +0100 |
commit | f7e0dba3ff7432b8dba244d9e085c1c24229ce76 (patch) | |
tree | e8bb13a486be81c75b55ebfb8701ce2000710887 /dev-lang/fuzion | |
parent | dev-lang/eisl: bump to 2.72 (diff) | |
download | gentoo-f7e0dba3ff7432b8dba244d9e085c1c24229ce76.tar.gz gentoo-f7e0dba3ff7432b8dba244d9e085c1c24229ce76.tar.bz2 gentoo-f7e0dba3ff7432b8dba244d9e085c1c24229ce76.zip |
dev-lang/fuzion: remove run_tests.results
Closes: https://bugs.gentoo.org/893450
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/fuzion')
-rw-r--r-- | dev-lang/fuzion/fuzion-0.080.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dev-lang/fuzion/fuzion-0.080.ebuild b/dev-lang/fuzion/fuzion-0.080.ebuild index 85dd0ea40aab..fc6bd6f75d82 100644 --- a/dev-lang/fuzion/fuzion-0.080.ebuild +++ b/dev-lang/fuzion/fuzion-0.080.ebuild @@ -31,7 +31,14 @@ src_test() { } src_install() { - rm -r "${S}"/build/tests || die + # Remove unnecessary files from build directory. bug #893450 + local torm torm_path + for torm in tests run_tests.{failures,results} ; do + torm_path="${S}"/build/${torm} + if [[ -e "${torm_path}" ]] ; then + rm -r "${torm_path}" || die "failed to remove ${toremove_path}" + fi + done insinto /usr/share/${PN} doins -r build/. |