summaryrefslogtreecommitdiffstats
path: root/qmake/generators/makefile.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-03-29 22:39:56 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-09 07:13:54 +0200
commit89c4b7b45c66605308e56ef7f53378798b22991f (patch)
tree848293d8a5966bb9d0c96e72e6a9ab1274055a31 /qmake/generators/makefile.cpp
parentced5e2f0e8353a9caa8fbbaaa82d15f7eba3d159 (diff)
Add spaces around the components of a pkg-config Cflags: field
Change-Id: I91c301adaaf62cf24be0203785282c375c9d01e1 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'qmake/generators/makefile.cpp')
-rw-r--r--qmake/generators/makefile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index 69a8c809ac..d095bdf83d 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -3271,10 +3271,10 @@ MakefileGenerator::writePkgConfigFile()
t << "Cflags: "
// << var("QMAKE_CXXFLAGS") << " "
<< varGlue("PRL_EXPORT_DEFINES","-D"," -D"," ")
- << project->values("PRL_EXPORT_CXXFLAGS").join(' ')
- << project->values("QMAKE_PKGCONFIG_CFLAGS").join(' ')
+ << varGlue("PRL_EXPORT_CXXFLAGS", "", " ", " ")
+ << varGlue("QMAKE_PKGCONFIG_CFLAGS", "", " ", " ")
// << varGlue("DEFINES","-D"," -D"," ")
- << " -I${includedir}" << endl;
+ << "-I${includedir}" << endl;
// requires
const QString requires = project->values("QMAKE_PKGCONFIG_REQUIRES").join(' ');