Disable questionable lines from Makefile.common that were causing my build system to deep crash.

git-svn-id: https://svn.eduke32.com/eduke32@2972 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2012-08-27 03:48:27 +00:00
parent ffa4e8ebb3
commit 6650f34105

View file

@ -162,8 +162,9 @@ else
endif endif
ifeq (0,$(CLANG)) ifeq (0,$(CLANG))
W_NO_UNUSED_RESULT := $(shell echo '' | $(CC) -E -Wno-unused-result - 2>/dev/null && echo -Wno-unused-result) # W_NO_UNUSED_RESULT := $(shell echo '' | $(CC) -E -Wno-unused-result - 2>/dev/null && echo -Wno-unused-result)
W_NO_UNUSED_RESULT := $(findstring -Wno-unused-result,$(W_NO_UNUSED_RESULT)) # W_NO_UNUSED_RESULT := $(findstring -Wno-unused-result,$(W_NO_UNUSED_RESULT))
W_NO_UNUSED_RESULT := -Wno-unused-result
else else
W_NO_UNUSED_RESULT := W_NO_UNUSED_RESULT :=
endif endif