From: Oswald Buddenhagen Date: Wed, 13 Jun 2012 13:19:46 +0000 (+0200) Subject: don't overquote make command X-Git-Tag: 071012110112~338^2^2~110 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2954378d6d3c881ad7e97fcfc66c220af3086f5;p=profile%2Fivi%2Fqtbase.git don't overquote make command $(MAKE) is apparently already quoted when the path contains spaces Change-Id: Ie09a0f43083f9eae95fc135c3a74364eaa356934 --- diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index 2b9afb9..20b82de 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3700,7 +3700,7 @@ void Configure::generateMakefiles() QTextStream txt(&file); txt << "all:\n"; txt << "\t" << args.join(" ") << "\n"; - txt << "\t\"$(MAKE)\" -$(MAKEFLAGS) -f " << it->target << "\n"; + txt << "\t$(MAKE) -$(MAKEFLAGS) -f " << it->target << "\n"; txt << "first: all\n"; txt << "qmake:\n"; txt << "\t" << args.join(" ") << "\n";