summaryrefslogtreecommitdiffstats
path: root/qmake/option.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-04-23 19:27:43 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2012-06-27 14:35:30 +0200
commit2ca26162f8348719ee04e63b4e80be8b5131521d (patch)
treed17f1259e20dcec87dc8db91719c80bae4a053ff /qmake/option.cpp
parenta54875057f3292799f1d9211ded7b7eb19ef3a39 (diff)
repurpose deprecated -E switch
instead of dumping the variables as we are going, dump everything at the end. this is potentially useful, as opposed to the previous functionality which was redundant with -d. Change-Id: Icf14703cb93e03f7079dfc0266b219ad9c902133 Reviewed-by: Mark Brand <mabrand@mabrand.nl>
Diffstat (limited to 'qmake/option.cpp')
-rw-r--r--qmake/option.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/qmake/option.cpp b/qmake/option.cpp
index 7d6148ce0a..91ff4050d1 100644
--- a/qmake/option.cpp
+++ b/qmake/option.cpp
@@ -306,7 +306,6 @@ 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];