fix quoting in plist creation
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Mon, 17 Aug 2015 13:34:18 +0000 (15:34 +0200)
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Tue, 18 Aug 2015 13:28:24 +0000 (13:28 +0000)
unlike everywhere else in this file, destdir is not pre-quoted here.

Task-number: QTBUG-47775
Change-Id: Ia5b0c56bbdd3eb095f81b0f615d68a338ffa52c5
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
qmake/generators/unix/unixmake2.cpp

index 92a78767841e0046739408c1a720c3ef78a5cc0a..8d841dfd82a891268b2c0180ef32a20ffdc34dbe 100644 (file)
@@ -818,7 +818,7 @@ UnixMakefileGenerator::writeMakeParts(QTextStream &t)
             t << escapeDependencyPath(info_plist_out) << ": \n\t";
             info_plist_out = escapeFilePath(info_plist_out);
             if (!destdir.isEmpty())
-                t << mkdir_p_asstring(destdir, false) << "\n\t";
+                t << mkdir_p_asstring(destdir) << "\n\t";
             ProStringList commonSedArgs;
             if (!project->values("VERSION").isEmpty()) {
                 commonSedArgs << "-e \"s,@SHORT_VERSION@," << project->first("VER_MAJ") << "."