diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2022-01-21 08:59:35 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2022-01-21 08:59:35 +0100 |
commit | f688d786cc276b390cc4ab7a51a25ed009b240e3 (patch) | |
tree | 2a9965154b22a28e83681b5a3fdb0a50d5ac3bf4 /dev-ml | |
parent | www-plugins/chrome-binary-plugins: automated update (98.0.4758.66_beta) (diff) | |
download | gentoo-f688d786cc276b390cc4ab7a51a25ed009b240e3.tar.gz gentoo-f688d786cc276b390cc4ab7a51a25ed009b240e3.tar.bz2 gentoo-f688d786cc276b390cc4ab7a51a25ed009b240e3.zip |
dev-ml/cudf: do not call ar directly
Closes: https://bugs.gentoo.org/748729
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml')
-rw-r--r-- | dev-ml/cudf/cudf-0.9-r2.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev-ml/cudf/cudf-0.9-r2.ebuild b/dev-ml/cudf/cudf-0.9-r2.ebuild index dcde53347192..01a76010f2c7 100644 --- a/dev-ml/cudf/cudf-0.9-r2.ebuild +++ b/dev-ml/cudf/cudf-0.9-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -43,6 +43,7 @@ src_prepare() { Makefile || die sed -i \ -e 's|-lncurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \ + -e "s|ar r|$(tc-getAR) r|g" \ c-lib/Makefile || die sed -i \ -e 's|-lcurses|$(shell ${PKG_CONFIG} --libs ncurses glib-2.0) -lunwind|g' \ |