summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@digia.com>2012-06-27 08:03:03 +0300
committerTim Jenssen <tim.jenssen@nokia.com>2012-06-28 14:08:26 +0200
commitd2dae930dbf5bc19d009a450c3b7e09122cedd4b (patch)
tree3ab10fdad029cef44f51b220ba98c7bbfa79c419
parent0d7950797d0c4afc2781e32f90c241773cb51420 (diff)
Fix broken build on Mac
On Mac the variable "scTargetDir" was not defined. This block of code was behind "#ifdef Q_OS_MAC" so other platforms were not affected. Added constants.h include for mac only to resolve the missing global constant. Change-Id: Ia8bef78d7c3015f283b202435d56d00187f3fb4f Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
-rw-r--r--src/libs/installer/qtpatchoperation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/installer/qtpatchoperation.cpp b/src/libs/installer/qtpatchoperation.cpp
index cf17fab99..a19ed0f77 100644
--- a/src/libs/installer/qtpatchoperation.cpp
+++ b/src/libs/installer/qtpatchoperation.cpp
@@ -34,6 +34,7 @@
#include "qtpatch.h"
#ifdef Q_OS_MAC
#include "macrelocateqt.h"
+#include "constants.h"
#endif
#include "packagemanagercore.h"