summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2011-03-31 08:03:44 (GMT)
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-03-31 08:03:52 (GMT)
commit804900564f4014bc5423ce7142643b1090f69dc3 (patch)
tree2f6d564387c2d32b451c70a25e64f7b7be4505db /tools/configure/configureapp.cpp
parentf25ea64306a53dae326b322dc40de6d09e347404 (diff)
downloadQt-804900564f4014bc5423ce7142643b1090f69dc3.zip
Qt-804900564f4014bc5423ce7142643b1090f69dc3.tar.gz
Qt-804900564f4014bc5423ce7142643b1090f69dc3.tar.bz2
fix configure.exe option -opengl desktop
Task-number: QTBUG-17997 Merge-request: 1161 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 1b77058..be44646 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -752,7 +752,7 @@ void Configure::parseCmdLine()
} else if ( configCmdLine.at(i) == "es2" ) {
dictionary[ "OPENGL_ES_2" ] = "yes";
} else if ( configCmdLine.at(i) == "desktop" ) {
- dictionary[ "OPENGL_ES_2" ] = "yes";
+ // OPENGL=yes suffices
} else {
cout << "Argument passed to -opengl option is not valid." << endl;
dictionary[ "DONE" ] = "error";