From 07bed9a211115c56bfa63983b0502f691f19f789 Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Mon, 15 Nov 2010 13:55:17 -0600 Subject: Make syncqt use sync.profile files from each module The sync.profile replaces the hardcoded paths inside syncqt, and enables it to work for other modules than just qtbase. --- tools/configure/configureapp.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 46f1a87ac9..2d84ad542e 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -188,9 +188,7 @@ Configure::Configure(int& argc, char** argv) if (syncqt_bat.open(QFile::WriteOnly)) { QTextStream stream(&syncqt_bat); stream << "@echo off" << endl - << "set QTDIR=" << QDir::toNativeSeparators(sourcePath) << endl - << "call " << fixSeparators(sourcePath) << fixSeparators("/bin/syncqt.bat -outdir \"") << fixSeparators(buildPath) << "\"" << endl - << "set QTDIR=" << QDir::toNativeSeparators(buildPath) << endl; + << "call " << fixSeparators(sourcePath) << fixSeparators("/bin/syncqt.bat -outdir \"") << fixSeparators(buildPath) << "\" \"" << fixSeparators(sourcePath) << "\"" << endl syncqt_bat.close(); } } -- cgit v1.2.3