summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-06-11 16:21:01 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-12 16:27:28 +0200
commit23d8a7fb237c433a74499dcd65aa60144aafbc46 (patch)
treeb2e4531a00d369be10cb5083c158c59ce63ba885 /tools
parent0d463c05fc4f2e79e5a4e5a5382a1e6ed5d2615e (diff)
don't copy/symlink doc/global to build dir
instead, use the files directly from the source dir. Change-Id: I03b728c66de6e03cade6dc153dcc78cea8e3f606 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Martin Smith <martin.smith@digia.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 6457f742a9..3e91e85882 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -157,17 +157,9 @@ Configure::Configure(int& argc, char** argv)
exit(0); // Exit cleanly for Ctrl+C
}
- cout << "Preparing build tree..." << endl;
QDir(buildPath).mkpath("bin");
buildDir.mkpath("mkspecs");
-
- buildDir.mkpath("doc");
- if (!Environment::cpdir(sourcePath + "/doc/global", buildPath + "/doc/global")) {
- cout << "Couldn't copy global documentation!" << sourcePath << " " << buildPath << endl;
- dictionary["DONE"] = "error";
- return;
- }
}
defaultBuildParts << QStringLiteral("libs") << QStringLiteral("tools") << QStringLiteral("examples");