Export the HOST variable even on Windows.

svn path=/trunk/; revision=14193
This commit is contained in:
Filip Navara 2005-03-19 17:22:02 +00:00
parent 1ca3f8ce13
commit ee054cd0f4

View file

@ -38,7 +38,7 @@ endif
# detect Windows host environment
ifeq ($(HOST),)
ifeq ($(word 1,$(shell gcc -dumpmachine)),mingw32)
HOST=mingw32-windows
export HOST=mingw32-windows
else
export HOST=mingw32-linux
endif