Author: oxygene Date: Sat May 8 17:50:44 2010 New Revision: 5530 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5530
Log: Slightly improve detecting Windows. Trivial Signed-off-by: Patrick Georgi <[email protected]> Acked-by: Patrick Georgi <[email protected]> Modified: trunk/Makefile Modified: trunk/Makefile ============================================================================== --- trunk/Makefile Sat May 8 13:17:24 2010 (r5529) +++ trunk/Makefile Sat May 8 17:50:44 2010 (r5530) @@ -368,12 +368,12 @@ $(obj)/ldoptions: $(obj)/config.h awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@ -_OS=$(shell uname -s |cut -c-7) +_OS=$(shell uname -o) STACK= -ifeq ($(_OS),MINGW32) +ifeq ($(_OS),Msys) STACK=-Wl,--stack,16384000 endif -ifeq ($(_OS),CYGWIN_) +ifeq ($(_OS),Cygwin) STACK=-Wl,--stack,16384000 endif $(objutil)/romcc/romcc: $(top)/util/romcc/romcc.c -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

