diff options
author | 2021-05-01 17:25:44 +0200 | |
---|---|---|
committer | 2021-05-18 13:33:25 +0300 | |
commit | 831f9c1fa0c10f96b7814e180a1bf140bce7cf8d (patch) | |
tree | 1dfd63ba72d891d6216eb1a232ba9961fef21ebd | |
parent | gui-apps/waybar: version bump to 0.9.7 (diff) | |
download | gentoo-831f9c1fa0c10f96b7814e180a1bf140bce7cf8d.tar.gz gentoo-831f9c1fa0c10f96b7814e180a1bf140bce7cf8d.tar.bz2 gentoo-831f9c1fa0c10f96b7814e180a1bf140bce7cf8d.zip |
app-text/uudeview: Replace hardcoded ar with `tc-getAR`.
Closes: https://bugs.gentoo.org/722602
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | app-text/uudeview/uudeview-0.5.20-r2.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-text/uudeview/uudeview-0.5.20-r2.ebuild b/app-text/uudeview/uudeview-0.5.20-r2.ebuild index 1e0174e5eb8d..c92ff28eafbc 100644 --- a/app-text/uudeview/uudeview-0.5.20-r2.ebuild +++ b/app-text/uudeview/uudeview-0.5.20-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools +inherit autotools toolchain-funcs DESCRIPTION="uu, xx, base64, binhex decoder" HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/" @@ -25,6 +25,8 @@ PATCHES=( DOCS=( HISTORY INSTALL README ) src_prepare() { + sed -i "s/^\tar r/\t$(tc-getAR) r/" uulib/Makefile.in || die + default mv configure.{in,ac} || die eautoreconf |