diff options
author | Fabian Groffen <grobian@gentoo.org> | 2022-01-16 10:33:37 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2022-01-16 10:33:37 +0100 |
commit | 538e155ff09754d737e20142b6519fb7b25c22d4 (patch) | |
tree | 5335f9ebb79bd6fab7e9075465d272a7fd911bfe /dev-vcs/git/git-9999.ebuild | |
parent | dev-util/colm-0.14.7-r1: re-add Prefix keywords (diff) | |
download | gentoo-538e155ff09754d737e20142b6519fb7b25c22d4.tar.gz gentoo-538e155ff09754d737e20142b6519fb7b25c22d4.tar.bz2 gentoo-538e155ff09754d737e20142b6519fb7b25c22d4.zip |
dev-vcs/git: fix osxkeychain conditional, thanks Arfrever
Closes: https://bugs.gentoo.org/831276
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'dev-vcs/git/git-9999.ebuild')
-rw-r--r-- | dev-vcs/git/git-9999.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index c77551019c67..075208f7ce0d 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -311,7 +311,7 @@ src_compile() { git_emake gitweb || die "emake gitweb (cgi) failed" fi - if [[ ${CHOST} == *-darwin* && ! tc-is-gcc ]]; then + if [[ ${CHOST} == *-darwin* ]] && tc-is-clang ; then pushd contrib/credential/osxkeychain &>/dev/null || die git_emake CC=$(tc-getCC) CFLAGS="${CFLAGS}" \ || die "emake credential-osxkeychain" @@ -358,7 +358,7 @@ src_compile() { src_install() { git_emake DESTDIR="${D}" install || die "make install failed" - if [[ ${CHOST} == *-darwin* && ! tc-is-gcc ]]; then + if [[ ${CHOST} == *-darwin* ]] && tc-is-clang ; then dobin contrib/credential/osxkeychain/git-credential-osxkeychain fi |