Merge "Restrict make version to 3.81"

This commit is contained in:
Ying Wang 2010-11-18 11:20:21 -08:00 committed by Android Code Review
commit b26a65b59f
1 changed files with 2 additions and 2 deletions

View File

@ -31,10 +31,10 @@ endif
#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.81))
$(warning ********************************************************************************)
$(warning * You are using version $(MAKE_VERSION) of make.)
$(warning * You must upgrade to version 3.81 or greater.)
$(warning * Android can only be built by version 3.81.)
$(warning * see http://source.android.com/source/download.html)
$(warning ********************************************************************************)
$(error stopping)