diff options
author | Martin Storsjo <martin@martin.st> | 2010-10-18 08:44:29 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-10-18 08:44:29 (GMT) |
commit | b9de3553ad6f26e96c5432df8b1b6be02fa5f9ca (patch) | |
tree | 57fa58527779855b9760b5f6cd367d9ad972297b /mkspecs/common/symbian/symbian.conf | |
parent | 3fcb43ac278ba50278f3141f1b7924b514723bf7 (diff) | |
download | Qt-b9de3553ad6f26e96c5432df8b1b6be02fa5f9ca.zip Qt-b9de3553ad6f26e96c5432df8b1b6be02fa5f9ca.tar.gz Qt-b9de3553ad6f26e96c5432df8b1b6be02fa5f9ca.tar.bz2 |
qmake/symbian: Make sure the destination directory exists before copying
cp on unix doesn't create the destination directory if it doesn't exist,
as xcopy on windows does.
This also requires QMAKE_MKDIR to use mkdir -p to be able to create
directories recursively.
Merge-request: 861
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'mkspecs/common/symbian/symbian.conf')
-rw-r--r-- | mkspecs/common/symbian/symbian.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/common/symbian/symbian.conf b/mkspecs/common/symbian/symbian.conf index d8c38f4..decec14 100644 --- a/mkspecs/common/symbian/symbian.conf +++ b/mkspecs/common/symbian/symbian.conf @@ -104,7 +104,7 @@ contains(QMAKE_HOST.os,Windows) { QMAKE_COPY_DIR = cp -r QMAKE_MOVE = mv QMAKE_DEL_FILE = rm -f - QMAKE_MKDIR = mkdir + QMAKE_MKDIR = mkdir -p QMAKE_DEL_DIR = rmdir QMAKE_DEL_TREE = rm -rf QMAKE_CHK_DIR_EXISTS = test -d |