From bac87a6abd05a4f98c60e5fa489314dc9f641def Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Mon, 29 Mar 2010 00:56:18 +0000 Subject: [PATCH] use gcc instead of g++ to avoid unnecessary linking against libstdc++, as this is plain C software SVN-Revision: 20567 --- sound/mpd/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index 4ad304f712..a36de90f6a 100644 --- a/sound/mpd/Makefile +++ b/sound/mpd/Makefile @@ -56,6 +56,9 @@ ifeq ($(CONFIG_PACKAGE_kmod-sound-core),) CONFIGURE_ARGS+= --disable-alsa endif +# use gcc instead of g++ to avoid unnecessary linking against libstdc++ +TARGET_CXX=$(TARGET_CC) + TARGET_CFLAGS+=-std=gnu99 CONFIGURE_VARS += \ -- 2.30.2