summaryrefslogtreecommitdiffstats
path: root/qmake/option.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-05-14 18:04:45 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2010-05-20 20:19:12 (GMT)
commit79893e1f90b04317fde14069684534ba29d74f5b (patch)
tree4d56c72fe21ca7971ad4a8eb118c133d25778690 /qmake/option.cpp
parenta8350d70e75462770e6ccb7a29c1c383c103687a (diff)
downloadQt-79893e1f90b04317fde14069684534ba29d74f5b.zip
Qt-79893e1f90b04317fde14069684534ba29d74f5b.tar.gz
Qt-79893e1f90b04317fde14069684534ba29d74f5b.tar.bz2
deprecate undocumented -E option
Reviewed-by: joerg
Diffstat (limited to 'qmake/option.cpp')
-rw-r--r--qmake/option.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/option.cpp b/qmake/option.cpp
index d63158c..8db3797 100644
--- a/qmake/option.cpp
+++ b/qmake/option.cpp
@@ -304,6 +304,7 @@ Option::parseCommandLine(int argc, char **argv, int skip)
} else if(opt == "nodependheuristics") {
Option::mkfile::do_dep_heuristics = false;
} else if(opt == "E") {
+ fprintf(stderr, "-E is deprecated. Use -d instead.\n");
Option::mkfile::do_preprocess = true;
} else if(opt == "cache") {
Option::mkfile::cachefile = argv[++x];