diff options
author | Mark Brand <mabrand@mabrand.nl> | 2011-03-31 08:03:44 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-03-31 08:03:52 (GMT) |
commit | 804900564f4014bc5423ce7142643b1090f69dc3 (patch) | |
tree | 2f6d564387c2d32b451c70a25e64f7b7be4505db /tools/configure | |
parent | f25ea64306a53dae326b322dc40de6d09e347404 (diff) | |
download | Qt-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')
-rw-r--r-- | tools/configure/configureapp.cpp | 2 |
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"; |