summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiels Weber <niels.2.weber@nokia.com>2012-04-03 08:43:33 +0200
committerNiels Weber <niels.2.weber@nokia.com>2012-04-03 12:14:39 +0200
commit93dc2c072f761ca1517a396bf503b903261532a0 (patch)
tree12da3d37c43c803c44fb16f0e1571dee62287123
parentd0f6762b8b19c7dd17bc06fc5523676513bc593a (diff)
Change usage message to reflect changed config handling.
Change-Id: Ia3287e48faa5b0efa575602933a1d965081b6f28 Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com>
-rw-r--r--tools/binarycreator/binarycreator.cpp2
-rw-r--r--tools/common/repositorygen.cpp2
-rw-r--r--tools/repogen/repogen.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/binarycreator/binarycreator.cpp b/tools/binarycreator/binarycreator.cpp
index c690a29db..a3ac6c280 100644
--- a/tools/binarycreator/binarycreator.cpp
+++ b/tools/binarycreator/binarycreator.cpp
@@ -415,7 +415,7 @@ static void printUsage()
std::cout << "Creates an offline installer for the SDK, containing all dependencies." << std::endl;
std::cout << std::endl;
std::cout << "Example (online installer):" << std::endl;
- std::cout << " " << appName << " -c installer-config -p packages-directory -e com.nokia.sdk.qt,"
+ std::cout << " " << appName << " -c installer-config/config.xml -p packages-directory -e com.nokia.sdk.qt,"
"com.nokia.qtcreator -t installerbase SDKInstaller.exe" << std::endl;
std::cout << std::endl;
std::cout << "Creates an installer for the SDK without qt and qt creator." << std::endl;
diff --git a/tools/common/repositorygen.cpp b/tools/common/repositorygen.cpp
index 68fe09b28..7f11ad26e 100644
--- a/tools/common/repositorygen.cpp
+++ b/tools/common/repositorygen.cpp
@@ -52,7 +52,7 @@ using namespace QInstallerTools;
void QInstallerTools::printRepositoryGenOptions()
{
- std::cout << " -c|--config dir The directory containing the installer configuration" << std::endl;
+ std::cout << " -c|--config file The file containing the installer configuration" << std::endl;
std::cout << " -p|--packages dir The directory containing the available packages." << std::endl;
std::cout << " Defaults to the current working directory." << std::endl;
diff --git a/tools/repogen/repogen.cpp b/tools/repogen/repogen.cpp
index 8323f345a..fea4afada 100644
--- a/tools/repogen/repogen.cpp
+++ b/tools/repogen/repogen.cpp
@@ -67,7 +67,7 @@ static void printUsage()
std::cout << std::endl;
std::cout << "Example:" << std::endl;
- std::cout << " " << appName << " -p ../examples/packages -c ../examples/config -u "
+ std::cout << " " << appName << " -p ../examples/packages -c ../examples/config/config.xml -u "
"http://www.some-server.com:8080 repository/" << std::endl;
}