From 6650f341051d928cfb8f0e89b1df160a51daf7f2 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 27 Aug 2012 03:48:27 +0000 Subject: [PATCH] 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 --- polymer/eduke32/Makefile.common | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 7df6236ae..810dfd717 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -162,8 +162,9 @@ else endif 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 := $(findstring -Wno-unused-result,$(W_NO_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 := -Wno-unused-result else W_NO_UNUSED_RESULT := endif