summaryrefslogtreecommitdiffstats
path: root/qmake/generators/makefile.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-12-09 09:17:48 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-02-12 15:48:09 (GMT)
commitdcdab4f3a6b943b54b630dd25827a444b6331e92 (patch)
treeb8de52898d1782ceec9afb907791d9ea7bf3b351 /qmake/generators/makefile.cpp
parentde8bbaab5b8d85243d3d18c642faef3a826ca672 (diff)
downloadQt-dcdab4f3a6b943b54b630dd25827a444b6331e92.zip
Qt-dcdab4f3a6b943b54b630dd25827a444b6331e92.tar.gz
Qt-dcdab4f3a6b943b54b630dd25827a444b6331e92.tar.bz2
remove remainder of mac9 mode
Reviewed-by: mariusSO
Diffstat (limited to 'qmake/generators/makefile.cpp')
-rw-r--r--qmake/generators/makefile.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index 991e1ec..ae43e2b 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -2164,9 +2164,7 @@ QString MakefileGenerator::buildArgs(const QString &outdir)
ret += " -nodependheuristics";
if(!Option::mkfile::qmakespec_commandline.isEmpty())
ret += " -spec " + specdir(outdir);
- if(Option::target_mode == Option::TARG_MAC9_MODE)
- ret += " -mac9";
- else if(Option::target_mode == Option::TARG_MACX_MODE)
+ if(Option::target_mode == Option::TARG_MACX_MODE)
ret += " -macx";
else if(Option::target_mode == Option::TARG_UNIX_MODE)
ret += " -unix";