litecross: fix $(TARGET)-based config when value comes from config.mak
commit 03bd65562a
wrongly placed the
logic conditional on $(TARGET) before inclusion of config.mak, so that
it only worked when TARGET was set from the make command line or
environment. reorder to fix.
This commit is contained in:
parent
347bfc9f61
commit
7a0997d196
|
@ -12,6 +12,8 @@ TOOLCHAIN_CONFIG = $(GCC_CONFIG)
|
|||
XGCC_DIR = ../obj_toolchain/gcc
|
||||
XGCC = $(XGCC_DIR)/xgcc -B $(XGCC_DIR)
|
||||
|
||||
-include config.mak
|
||||
|
||||
ifneq ($(findstring fdpic,$(TARGET)),)
|
||||
GCC_CONFIG += --enable-fdpic
|
||||
endif
|
||||
|
@ -37,8 +39,6 @@ GCC_CONFIG += --with-float=hard
|
|||
endif
|
||||
|
||||
|
||||
-include config.mak
|
||||
|
||||
MAKE += MULTILIB_OSDIRNAMES=
|
||||
MAKE += INFO_DEPS= infodir=
|
||||
MAKE += ac_cv_prog_lex_root=lex.yy.c
|
||||
|
|
Loading…
Reference in New Issue