summaryrefslogtreecommitdiffstats
path: root/external/coinmp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-02-20 18:08:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-02-21 08:27:19 +0000
commit9116e05c56f220d41a72dfc4c2daafbcd5f3ab61 (patch)
tree44e692c58d960587f880ca6f650a605d4c31c935 /external/coinmp
parentRemove wrong and broken encoding from INetMIMEMessage::SetHeaderField_Impl (diff)
downloadcore-9116e05c56f220d41a72dfc4c2daafbcd5f3ab61.tar.gz
core-9116e05c56f220d41a72dfc4c2daafbcd5f3ab61.zip
Fix check for non-empty UCRTVERSION
...introduced with b862cbdd345ec57c2595629ded6a3969e1e65d56 "Support MSVC 15.0", but $(filter ...,) always expands to the empty string, and this is probably what was intended. Change-Id: I5865ea13ba3c3d52402bcba48f4f770f6c2b8862 Reviewed-on: https://gerrit.libreoffice.org/34482 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'external/coinmp')
-rw-r--r--external/coinmp/ExternalProject_coinmp.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/coinmp/ExternalProject_coinmp.mk b/external/coinmp/ExternalProject_coinmp.mk
index a09f2665b866..3e7f0cc55a53 100644
--- a/external/coinmp/ExternalProject_coinmp.mk
+++ b/external/coinmp/ExternalProject_coinmp.mk
@@ -22,7 +22,7 @@ $(call gb_ExternalProject_get_state_target,coinmp,build) :
$(if $(filter 120,$(VCVER)),/p:PlatformToolset=v120 /p:VisualStudioVersion=12.0 /ToolsVersion:12.0) \
$(if $(filter 140,$(VCVER)),/p:PlatformToolset=v140 /p:VisualStudioVersion=14.0 /ToolsVersion:14.0) \
$(if $(filter 150,$(VCVER)),/p:PlatformToolset=v141 /p:VisualStudioVersion=15.0 /ToolsVersion:15.0) \
- $(if $(filter $(UCRTVERSION),),,/p:WindowsTargetPlatformVersion=$(UCRTVERSION)) \
+ $(if $(UCRTVERSION),/p:WindowsTargetPlatformVersion=$(UCRTVERSION)) \
,CoinMP/MSVisualStudio/v9)
else