From 8450567aad77798ba418792694252fb43d9c76cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 21 Nov 2019 11:13:20 +0100 Subject: [PATCH] mame: fix missing blank in SYS_LDFLAGS --- games-emulation/mame/mame-0.210.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games-emulation/mame/mame-0.210.recipe b/games-emulation/mame/mame-0.210.recipe index d6d848e07..fe0546dbb 100644 --- a/games-emulation/mame/mame-0.210.recipe +++ b/games-emulation/mame/mame-0.210.recipe @@ -137,8 +137,8 @@ BUILD() # This is wrong on so many levels SYS_LDFLAGS="-lbsd -lnetwork " # trailing space required! for _i in flac libutf8proc lua RapidJSON sqlite3; do - SYS_CFLAGS+="`pkg-config $_i --cflags`" - SYS_LDFLAGS+="`pkg-config $_i --libs`" + SYS_CFLAGS+="`pkg-config $_i --cflags` " + SYS_LDFLAGS+="`pkg-config $_i --libs` " done ARCHOPTS="$SYS_CFLAGS $SYS_LDFLAGS" \