diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-08-21 17:20:21 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-08-21 17:20:21 (GMT) |
commit | f0289430822c241f808c64342ae796ba6a460096 (patch) | |
tree | b8942711194240ba797e342adf7fe86a9a5e4a68 /tools | |
parent | 015d7cd6d0d2bd22a74ee1b06e703eb876336bec (diff) | |
download | Qt-f0289430822c241f808c64342ae796ba6a460096.zip Qt-f0289430822c241f808c64342ae796ba6a460096.tar.gz Qt-f0289430822c241f808c64342ae796ba6a460096.tar.bz2 |
Use relative paths in DESTDIR in qdoc3.pro.
When mkdist builds qdoc, it uses a shadow build outside Qt's build. So
.qmake.cache is not present. That led qmake to try and write to /bin,
which would obviously fail.
Reviewed-by: TrustMe
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qdoc3/qdoc3.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/qdoc3.pro b/tools/qdoc3/qdoc3.pro index 21b3bb9..99edcf4 100644 --- a/tools/qdoc3/qdoc3.pro +++ b/tools/qdoc3/qdoc3.pro @@ -7,7 +7,7 @@ DEFINES += QT_NO_CAST_TO_ASCII QT = core xml CONFIG += console CONFIG -= debug_and_release_target -DESTDIR = $$QT_BUILD_TREE/bin +DESTDIR = ../../bin #CONFIG += debug build_all:!build_pass { CONFIG -= build_all |