configure --help clarifications relating to -*prefix

Change-Id: I71c78b7c91c9fedb7d55731b3f61d46ea75c9b8d
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
Oswald Buddenhagen 2014-12-01 20:06:52 +01:00
parent c0fa5922b2
commit a07fd165f3
2 changed files with 13 additions and 11 deletions

13
configure vendored
View File

@ -2254,16 +2254,15 @@ Installation options:
These are optional, but you may specify install directories.
-prefix <dir> ...... This will install everything relative to <dir>
-prefix <dir> ...... The deployment directory, as seen on the target device.
(default /usr/local/Qt-${QT_VERSION}, \$PWD if -developer-build is active)
-extprefix <dir> ... When -sysroot is used, install everything to <dir>,
rather than into SYSROOT/PREFIX.
-extprefix <dir> ... The installation directory, as seen on the host machine.
(default SYSROOT/PREFIX)
-hostprefix [dir] .. Tools and libraries needed when developing
applications are installed in [dir]. If [dir] is
not given, the current build directory will be used.
(default EXTPREFIX)
-hostprefix [dir] .. The installation directory for build tools running on the
host machine. If [dir] is not given, the current build
directory will be used. (default EXTPREFIX)
You may use these to separate different parts of the install:

View File

@ -1717,12 +1717,15 @@ bool Configure::displayHelp()
desc("These are optional, but you may specify install directories.\n\n", 0, 1);
desc( "-prefix <dir>", "This will install everything relative to <dir> (default $QT_INSTALL_PREFIX)\n");
desc( "-prefix <dir>", "The deployment directory, as seen on the target device.\n"
"(default %CD%)\n");
desc( "-extprefix <dir>", "When -sysroot is used, install everything to <dir>, rather than into SYSROOT/PREFIX.\n");
desc( "-extprefix <dir>", "The installation directory, as seen on the host machine.\n"
"(default SYSROOT/PREFIX)\n");
desc( "-hostprefix [dir]", "Tools and libraries needed when developing applications are installed in [dir]. "
"If [dir] is not given, the current build directory will be used. (default EXTPREFIX)\n");
desc( "-hostprefix [dir]", "The installation directory for build tools running on the\n"
"host machine. If [dir] is not given, the current build\n"
"directory will be used. (default EXTPREFIX)\n");
desc("You may use these to separate different parts of the install:\n\n");