diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2021-04-06 09:46:14 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2021-04-06 09:46:23 +0100 |
commit | 6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e (patch) | |
tree | 50b1d4a575c4075808147fb4cf80899215556800 /games-roguelike/tome | |
parent | sys-libs/kpmcore: Drop 4.2.0 (diff) | |
download | gentoo-6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e.tar.gz gentoo-6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e.tar.bz2 gentoo-6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e.zip |
games-roguelike/tome: fix spelling of tc-getPKG_CONFIG
Reported-by: Agostino Sarubbo
Closes: https://bugs.gentoo.org/780516
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'games-roguelike/tome')
-rw-r--r-- | games-roguelike/tome/tome-2.3.5.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games-roguelike/tome/tome-2.3.5.ebuild b/games-roguelike/tome/tome-2.3.5.ebuild index e7b97c6f3709..3e3884187946 100644 --- a/games-roguelike/tome/tome-2.3.5.ebuild +++ b/games-roguelike/tome/tome-2.3.5.ebuild @@ -56,7 +56,7 @@ src_prepare() { src_compile() { tc-export CC - local GENTOO_INCLUDES="" GENTOO_DEFINES="-DUSE_GCU " GENTOO_LIBS="$($(tc_getPKG_CONFIG) ncurses --libs)" + local GENTOO_INCLUDES="" GENTOO_DEFINES="-DUSE_GCU " GENTOO_LIBS="$($(tc-getPKG_CONFIG) ncurses --libs)" if use sdl || use X || use gtk || use Xaw3d; then GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_EGO_GRAPHICS -DUSE_TRANSPARENCY \ @@ -86,9 +86,9 @@ src_compile() { fi if use gtk; then - GENTOO_INCLUDES="${GENTOO_INCLUDES} $($(tc_getPKG_CONFIG) gtk+-2.0 --cflags)" + GENTOO_INCLUDES="${GENTOO_INCLUDES} $($(tc-getPKG_CONFIG) gtk+-2.0 --cflags)" GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_GTK2 " - GENTOO_LIBS="${GENTOO_LIBS} $($(tc_getPKG_CONFIG) gtk+-2.0 --libs) " + GENTOO_LIBS="${GENTOO_LIBS} $($(tc-getPKG_CONFIG) gtk+-2.0 --libs) " GTK_SRC_FILE="main-gtk2.c" GTK_OBJ_FILE="main-gtk2.o" else |