Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
am a8dd58a: Merge "Allow make 3.82 to be used under Cygwin 1.7"
Browse files Browse the repository at this point in the history
* commit 'a8dd58a8a604ed90c5fd5fb632eb2bb8b1ff8fa0':
  Allow make 3.82 to be used under Cygwin 1.7
  • Loading branch information
ralf-at-android authored and Android Git Automerger committed Mar 28, 2012
2 parents 2696eb6 + a8dd58a commit b6addfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ endif
#TOPDIR := $(TOP)/
#endif

# check for broken versions of make
# Check for broken versions of make.
# (Allow any version under Cygwin since we don't actually build the platform there.)
ifeq (,$(findstring CYGWIN,$(shell uname -sm)))
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 ********************************************************************************)
Expand All @@ -48,6 +50,7 @@ $(warning **********************************************************************
$(error stopping)
endif
endif
endif

TOP := .
TOPDIR :=
Expand Down

0 comments on commit b6addfb

Please sign in to comment.