From e2097fe8ec6a719071a2dfff577c2de0bd073ec3 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 30 Nov 2015 08:12:53 +0100 Subject: [PATCH] Tests: Fix compile for OSX... ...as the define points to a path containing a whitespace which confuses moc this must be escaped. Change-Id: If5fe0e7b3eeb0f4a46df4df3eb8236c94587ea88 Reviewed-by: Jake Petroules --- tests/auto/sdktool/sdktool.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/sdktool/sdktool.pro b/tests/auto/sdktool/sdktool.pro index d333b897287..b83c78847f9 100644 --- a/tests/auto/sdktool/sdktool.pro +++ b/tests/auto/sdktool/sdktool.pro @@ -1,5 +1,5 @@ include(../qttest.pri) -DEFINES += "SDKTOOL_DIR=\\\"$$IDE_LIBEXEC_PATH\\\"" +DEFINES += "SDKTOOL_DIR=\\\"$$replace(IDE_LIBEXEC_PATH, " ", "\\ ")\\\"" SOURCES += tst_sdktool.cpp