OSDN Git Service

Get build system to work with Make 3.82
authorConley Owens <cco3@android.com>
Thu, 22 Dec 2011 17:46:19 +0000 (09:46 -0800)
committerJean-Baptiste Queru <jbq@google.com>
Thu, 22 Dec 2011 23:16:05 +0000 (15:16 -0800)
Note: `sort` can't seem to handle newlines in 3.82.

Change-Id: Ieeaee1d19688688a02e396bbc5b4dea26e7f6943

core/definitions.mk
core/main.mk

index 16064ae..3a5249c 100644 (file)
@@ -691,7 +691,7 @@ define _get-package-overrides
 endef
 
 define get-package-overrides
-$(strip $(sort $(call _get-package-overrides,$(1))))
+$(sort $(strip $(call _get-package-overrides,$(1))))
 endef
 
 ###########################################################
index b28b2f7..380fb1d 100644 (file)
@@ -39,13 +39,15 @@ endif
 
 # check for broken versions of make
 ifeq (0,$(shell expr $$(echo $(MAKE_VERSION) | sed "s/[^0-9\.].*//") = 3.81))
+ifeq (0,$(shell expr $$(echo $(MAKE_VERSION) | sed "s/[^0-9\.].*//") = 3.82))
 $(warning ********************************************************************************)
 $(warning *  You are using version $(MAKE_VERSION) of make.)
-$(warning *  Android can only be built by version 3.81.)
+$(warning *  Android can only be built by versions 3.81 and 3.82.)
 $(warning *  see http://source.android.com/source/download.html)
 $(warning ********************************************************************************)
 $(error stopping)
 endif
+endif
 
 TOP := .
 TOPDIR :=