summaryrefslogtreecommitdiff
path: root/solenv/gbuild/platform
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-06-04 17:11:36 +0200
committerMichael Stahl <mstahl@redhat.com>2013-06-04 17:21:14 +0200
commit64921c7064cf1248f6af5a088300283f37e098e4 (patch)
treefb133bbb948e850b8999643f2fc250e2b0964417 /solenv/gbuild/platform
parent3b4d361c21a1289b664cbcb9c15751d99ef6348d (diff)
gbuild: get rid of that horrible $(shell...)
... just check against the only still supported MSVC instead (2010). Change-Id: I898bddb9156c04fa1daaf78fca9d5b4ec8f430cf
Diffstat (limited to 'solenv/gbuild/platform')
-rw-r--r--solenv/gbuild/platform/com_MSC_defs.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk
index 10cfc414fa20..162fd2fb94f4 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -189,7 +189,7 @@ ifeq ($(VCVER),100)
endif
-ifeq ($(shell [ $(VCVER) -ge 110 ] && echo $(true)),$(true))
+ifneq ($(VCVER),100)
# rc.exe does not support -nologo in 6.1.6723.1 that is in the Windows SDK 6.0A
gb_RCFLAGS += -nologo
endif