Reall move CONFIG_XCOMPILE_FLAGS into packages.mk

This commit is contained in:
Neale Pickett 2011-09-26 12:13:50 -06:00
parent 3f48e7630a
commit 0df9801976
2 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,6 @@ CACHE = cache
# The end result
BIN = bin
# Things configure likes to see
CONFIG_XCOMPILE_FLAGS = --host=i386-linux --program-transform-name=
all: packages
dist: ctf-install.zip

View File

@ -21,6 +21,9 @@ endef
include packages/*/*.mk
# Things configure likes to see
CONFIG_XCOMPILE_FLAGS = --host=i386-linux --program-transform-name=
# Make foo depend on foo.pkg
$(foreach p, $(PACKAGES), $(eval $p: $(BIN)/$p.pkg))