Skip to content

Commit 7897ec3

Browse files
committed
Allow overriding the OS environment variable
1 parent 8d06d86 commit 7897ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/make/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DELETE_FLAGS ?= -rf
2424
#
2525
# [1]: https://en.wikipedia.org/wiki/Uname#Examples
2626
# [2]: http://stackoverflow.com/a/27776822/2225624
27-
OS := $(shell uname)
27+
OS ?= $(shell uname)
2828
ifneq (, $(findstring MINGW,$(OS)))
2929
OS := WINNT
3030
else

0 commit comments

Comments
 (0)