Skip to content

Commit

Permalink
games-arcade/sdb: [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 ac20808 commit 317ba7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions games-arcade/sdb/sdb-1.0.2-r2.ebuild
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -41,8 +41,8 @@ src_compile() {
emake \
-C src \
CXXFLAGS="${CXXFLAGS} $(sdl-config --cflags)" \
CC=$(tc-getCC) \
CPP=$(tc-getCXX)
CC="$(tc-getCC)" \
CPP="$(tc-getCXX)"
}

src_install() {
Expand Down

0 comments on commit 317ba7e

Please sign in to comment.