summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2013-05-10 02:07:34 +0100
committerRichard Dale <richard.dale@codethink.co.uk>2013-05-30 12:18:14 +0100
commitdf63b731c920cf235cf2197e22a04597bf784d10 (patch)
treed8bbcf45c4b845a7d2094d336c6a24abc94f6a7e
parente5b2ae7d55c4e8d9d5f6e98d9076ab11e0b72fdb (diff)
downloadqtbase-df63b731c920cf235cf2197e22a04597bf784d10.tar.gz
Add hacks to build html_docs without qdoc being installed
-rw-r--r--qtbase.morph11
1 files changed, 9 insertions, 2 deletions
diff --git a/qtbase.morph b/qtbase.morph
index a534c84aa3..edbaf9d2e3 100644
--- a/qtbase.morph
+++ b/qtbase.morph
@@ -5,9 +5,16 @@
"./configure -v -prefix /usr -opensource -confirm-license"
],
"build-commands": [
- "make"
+ "make",
+ "touch /qtbase.build/src/corelib/corelib.pro",
+ "./bin/qmake -set QDOC /qtbase.build/bin/qdoc",
+ "make html_docs",
+ "./bin/qmake -unset QDOC"
],
"install-commands": [
- "make install INSTALL_ROOT=$DESTDIR"
+ "make install INSTALL_ROOT=$DESTDIR",
+ "./bin/qmake -set QDOC /qtbase.build/bin/qdoc",
+ "make install_html_docs INSTALL_ROOT=$DESTDIR",
+ "./bin/qmake -unset QDOC"
]
}