diff options
author | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-11 13:32:00 +0100 |
commit | 398a42634f34afa1979d88ae1d8b38194e911c2d (patch) | |
tree | d6a45bdf7b35b71c192602a46e8d98d12a88cb02 /dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild | |
parent | dev-ros/geometric_shapes: Remove old (diff) | |
download | gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.gz gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.tar.bz2 gentoo-398a42634f34afa1979d88ae1d8b38194e911c2d.zip |
*/*: [QA] Remove redundant `|| die` guards
* Since all ebuilds in the tree are EAPI>=4,
`|| die` on builtin commands is redundant
and dead code.
Closes: https://github.com/gentoo/gentoo/pull/13940
Reviewed-by: Ulrich Müller <ulm@gentoo.org>
Reviewed-by: Michał Górny <mgorny@gentoo.org>
Reviewed-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild')
-rw-r--r-- | dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild b/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild index 32edf6f51a1c..538f8b0544bb 100644 --- a/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild +++ b/dev-ada/gnat-suite-bin/gnat-suite-bin-2017.ebuild @@ -84,15 +84,15 @@ src_install() { doins -r etc include lib* share insinto ${PREFIX}/share/gps/plug-ins doins share/examples/gnat/gnat-examples.xml - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 || die - fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprbind || die - fperms 755 ${PREFIX}/libexec/gprbuild/gprlib || die + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/cc1plus + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/collect2 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/gnat1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/liblto_plugin.so.0.0.0 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto1 + fperms 755 ${PREFIX}/libexec/gcc/${machine}/${basever}/lto-wrapper + fperms 755 ${PREFIX}/libexec/gprbuild/gprbind + fperms 755 ${PREFIX}/libexec/gprbuild/gprlib } pkg_postinst () { |