Skip to content

Commit

Permalink
media-gfx/farbfeld: [QA] fix tc-get* quoting
Browse files Browse the repository at this point in the history
This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam committed Mar 20, 2022
1 parent 4117149 commit b707d5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions media-gfx/farbfeld/farbfeld-4.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
Expand Down Expand Up @@ -32,7 +32,7 @@ src_prepare() {
}

src_compile() {
emake CC=$(tc-getCC)
emake CC="$(tc-getCC)"
}

src_install() {
Expand Down
4 changes: 2 additions & 2 deletions media-gfx/farbfeld/farbfeld-9999.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
Expand Down Expand Up @@ -32,7 +32,7 @@ src_prepare() {
}

src_compile() {
emake CC=$(tc-getCC)
emake CC="$(tc-getCC)"
}

src_install() {
Expand Down

0 comments on commit b707d5e

Please sign in to comment.