summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/spec_post.prf
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@kdab.com>2016-11-11 10:02:34 +0100
committerHannah von Reth <hannah.vonreth@kdab.com>2016-11-14 16:03:39 +0000
commitaeb2768a7c5b23260e6ca0826b844777b9948b6c (patch)
treee3afe9912796f77a9858e65f20eed0224558300b /mkspecs/features/spec_post.prf
parent104e6d0f5427f5ebaab106b1651eb76c4c56df98 (diff)
Introduce QMAKE_CD to enable us to cd from one Windows drive to another
On Windows cd does not change the drive. So when you are on drive C: and type "cd D:\data" it will change the directory on drive D: but not affect your current working directory. To also change your drive you have to provide the parameter /d on Windows, so "cd /d D:\data" will also change the drive. Task-number: QTBUG-57080 Change-Id: Ib629879534523982eec693cef725f20a535a1a74 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'mkspecs/features/spec_post.prf')
-rw-r--r--mkspecs/features/spec_post.prf2
1 files changed, 2 insertions, 0 deletions
diff --git a/mkspecs/features/spec_post.prf b/mkspecs/features/spec_post.prf
index 234189fed1..f87bf3c037 100644
--- a/mkspecs/features/spec_post.prf
+++ b/mkspecs/features/spec_post.prf
@@ -67,6 +67,7 @@ equals(MAKEFILE_GENERATOR, MSBUILD) \
|isEmpty(QMAKE_SH) {
QMAKE_ZIP = zip -r -9
+ QMAKE_CD = cd /d
QMAKE_COPY = copy /y
QMAKE_COPY_FILE = $$QMAKE_COPY
QMAKE_COPY_DIR = xcopy /s /q /y /i
@@ -87,6 +88,7 @@ equals(MAKEFILE_GENERATOR, MSBUILD) \
QMAKE_TAR = tar -cf
QMAKE_GZIP = gzip -9f
+ QMAKE_CD = cd
QMAKE_COPY = cp -f
QMAKE_COPY_FILE = $$QMAKE_COPY
QMAKE_COPY_DIR = $$QMAKE_COPY -R