commit: 00ce000ed8e629a7befc507288db655081db0cd1 Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de> AuthorDate: Wed Aug 7 10:08:54 2019 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Sun Aug 18 14:57:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ce000e
qmail.eclass: honor toolchain settings for ar and ranlib Closes: https://bugs.gentoo.org/471436 Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de> Closes: https://github.com/gentoo/gentoo/pull/12631 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> eclass/qmail.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/qmail.eclass b/eclass/qmail.eclass index 552a37d5587..150b6c00aab 100644 --- a/eclass/qmail.eclass +++ b/eclass/qmail.eclass @@ -102,6 +102,7 @@ qmail_set_cc() { echo "${cc} ${CFLAGS} ${CPPFLAGS}" > ./conf-cc || die 'Patching conf-cc failed.' echo "${ld} ${LDFLAGS}" > ./conf-ld || die 'Patching conf-ld failed.' + sed -e "s#'ar #'$(tc-getAR) #" -e "s#'ranlib #'$(tc-getRANLIB) #" -i make-makelib.sh } # @FUNCTION: qmail_create_groups
