Use immediate instead of deferred assignment when copying TRICK_SYSTEM_CXXFLAGS to TRICK_SYSTEM_CFLAGS

This commit is contained in:
Derek Bankieris 2016-10-06 16:00:22 -05:00
parent abc7072918
commit b5b46d9c75

View File

@ -135,7 +135,7 @@ ifneq ($(GSL_HOME),)
endif
# -fexceptions is included to propogate execptions through C code.
TRICK_SYSTEM_CFLAGS = $(TRICK_SYSTEM_CXXFLAGS) -fexceptions
TRICK_SYSTEM_CFLAGS := $(TRICK_SYSTEM_CXXFLAGS) -fexceptions
# append additional c and cxx flags defined in config_*.mk files.
TRICK_SYSTEM_CFLAGS += $(TRICK_ADDITIONAL_CFLAGS)