Author: jimtabor Date: Tue Jul 15 21:07:55 2008 New Revision: 34542
URL: http://svn.reactos.org/svn/reactos?rev=34542&view=rev Log: Fix build.
Modified: trunk/reactos/Makefile
Modified: trunk/reactos/Makefile URL: http://svn.reactos.org/svn/reactos/trunk/reactos/Makefile?rev=34542&r1=3... ============================================================================== --- trunk/reactos/Makefile [iso-8859-1] (original) +++ trunk/reactos/Makefile [iso-8859-1] Tue Jul 15 21:07:55 2008 @@ -167,20 +167,20 @@ .SUFFIXES:
ifeq ($(HOST),) - ifeq ($(word 1,$(shell gcc -dumpmachine)),mingw32) - ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys) - export OSTYPE = msys - HOST=mingw32-linux - HOST_CFLAGS+=-fshort-wchar - HOST_CPPFLAGS+=-fshort-wchar - else - HOST=mingw32-windows - endif - else - HOST=mingw32-linux - HOST_CFLAGS+=-fshort-wchar - HOST_CPPFLAGS+=-fshort-wchar - endif +ifeq ($(word 1,$(shell gcc -dumpmachine)),mingw32) +ifeq ($(findstring msys,$(shell sh --version 2>nul)),msys) +export OSTYPE = msys +HOST=mingw32-linux +HOST_CFLAGS+=-fshort-wchar +HOST_CPPFLAGS+=-fshort-wchar +else +HOST=mingw32-windows +endif +else +HOST=mingw32-linux +HOST_CFLAGS+=-fshort-wchar +HOST_CPPFLAGS+=-fshort-wchar +endif endif
# Default to half-verbose mode