aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-01-03 12:53:39 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-03 17:19:45 +0100
commitacb74866e995e73d4d5f98985e819b3f5aa6e02f (patch)
tree5e51aa175a098f1b8d5227850df89dbf1aeabf2c
parent24faf4a3c6c40a36e8db26504b3fe157a2afa6cd (diff)
README: Don't advocate -confirm-license
Let the user at least see the license once (but explain the use of -confirm-license in the Hints section). Change-Id: I847486e73b3d78c0f4d18562446ec1172d746ff3 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
-rw-r--r--README11
1 files changed, 7 insertions, 4 deletions
diff --git a/README b/README
index 14a3c943..93689e6f 100644
--- a/README
+++ b/README
@@ -8,7 +8,7 @@ HOW TO BUILD QT5
For a stable build of Qt5:
./init-repository
- ./configure -prefix $PWD/qtbase -opensource -confirm-license
+ ./configure -prefix $PWD/qtbase -opensource
make -j4
More details follow.
@@ -66,13 +66,13 @@ HOW TO BUILD QT5
Example for a release build:
(adjust the `-jN' parameter as appropriate for your system)
- ./configure -prefix $PWD/qtbase -opensource -confirm-license
+ ./configure -prefix $PWD/qtbase -opensource
make -j4
Example for a developer build:
(enables more autotests, builds debug version of libraries, ...)
- ./configure -developer-build -opensource -confirm-license
+ ./configure -developer-build -opensource
make -j4
See output of `./configure -help' for documentation on various options to
@@ -85,7 +85,7 @@ HOW TO BUILD QT5
a `make module-<foo>'. For example, to build only qtscript and qtwebkit,
and the modules they depend on:
- ./configure -prefix $PWD/qtbase -opensource -confirm-license
+ ./configure -prefix $PWD/qtbase -opensource
make -j4 module-qtscript module-qtwebkit
This can save a lot of time if you are only interested in a subset of Qt5.
@@ -102,5 +102,8 @@ HOW TO BUILD QT5
-nomake tests -nomake examples
+ You can pass -confirm-license to configure to automatically acknowledge the
+ LGPL 2.1 license.
+
The qt5_tool in qtrepotools has some more features which may be of interest.
Try `qt5_tool --help'.