diff options
author | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-11-04 14:39:17 (GMT) |
---|---|---|
committer | Daniel Molkentin <daniel.molkentin@nokia.com> | 2009-11-04 14:43:14 (GMT) |
commit | 05eeb454e0fcc83db330ee7df33a800a6998fc30 (patch) | |
tree | 78ad9932a62d3fb5d442f083a034a67d01913e01 /tools/configure | |
parent | 7905101fb5ef18c776be515b9287356b1efc5ceb (diff) | |
download | Qt-05eeb454e0fcc83db330ee7df33a800a6998fc30.zip Qt-05eeb454e0fcc83db330ee7df33a800a6998fc30.tar.gz Qt-05eeb454e0fcc83db330ee7df33a800a6998fc30.tar.bz2 |
eval: add key for the installer to grep for.
Reviewed-By: con
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 e2b7d58..95f271d 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3103,7 +3103,7 @@ void Configure::generateConfigfiles() if (tmpFile3.open()) { tmpStream.setDevice(&tmpFile3); tmpStream << "/* Evaluation license key */" << endl - << "static const char qt_eval_key_data [512 + 12] = \"" << licenseInfo["LICENSEKEYEXT"] << "\";" << endl; + << "static const char qt_eval_key_data [512 + 12] = \"qt_qevalkey=" << licenseInfo["LICENSEKEYEXT"] << "\";" << endl; tmpStream.flush(); tmpFile3.flush(); |