From 5eccb2f4dbc699680ccb5bb9b4477911c56749ca Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Sat, 26 Apr 2014 11:25:30 -0700 Subject: [PATCH] Move whitespace variables up to where all the other variables are Signed-off-by: Timothy Gu --- Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 5baee450..01bb9ad0 100644 --- a/Makefile +++ b/Makefile @@ -51,6 +51,15 @@ BUILD := $(shell '$(EXT_DIR)/config.guess') BUILD_PKGS := $(shell grep -l 'BUILD_$$(BUILD)' '$(TOP_DIR)/src/'*.mk | $(SED) -n 's,.*src/\(.*\)\.mk,\1,p') PATH := $(PREFIX)/$(BUILD)/bin:$(PREFIX)/bin:$(PATH) +# define some whitespace variables +define newline + + +endef + +null := +space := $(null) $(null) + MXE_CONFIGURE_OPTS = \ --host='$(TARGET)' \ --build='$(BUILD)' \ @@ -182,15 +191,6 @@ $(PREFIX)/installed/check-requirements: $(MAKEFILE) $(call CHECK_REQUIREMENT_VERSION,automake,1\.11\.[3-9]\|1\.[1-9][2-9]\(\.[0-9]\+\)\?) @touch '$@' -# define some whitespace variables -define newline - - -endef - -null := -space := $(null) $(null) - include $(patsubst %,$(TOP_DIR)/src/%.mk,$(PKGS)) .PHONY: download