use gcc instead of g++ to avoid unnecessary linking against libstdc++, as this is plain C software

git-svn-id: svn://svn.openwrt.org/openwrt/packages@20567 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mirko 2010-03-29 00:56:18 +00:00
parent 3737775478
commit 0c386a4042

View File

@ -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 += \