From 0df9801976807240cdaa7f63e351bf4e081ff7bb Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Mon, 26 Sep 2011 12:13:50 -0600 Subject: [PATCH] Reall move CONFIG_XCOMPILE_FLAGS into packages.mk --- Makefile | 3 --- packages/packages.mk | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 329657e..4b9363b 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/packages/packages.mk b/packages/packages.mk index 2981412..d4b16f6 100644 --- a/packages/packages.mk +++ b/packages/packages.mk @@ -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))