From 2c74d01e94e66f4c04ee27b9c6384dc51e4c97ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com> Date: Thu, 8 Jan 2009 13:44:37 +0100 Subject: [PATCH] Fixed 'make docs' lauching of qhelpgenerator It assumed qhelpgenerator was in the path, though this isn't necessarily the case. Use the absolute directory instead. --- doc/doc.pri | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doc.pri b/doc/doc.pri index cb800823ec4..d8e65d4a944 100644 --- a/doc/doc.pri +++ b/doc/doc.pri @@ -1,9 +1,9 @@ unix { QDOC = SRCDIR=$$PWD OUTDIR=$$OUT_PWD/doc/html $$(QTDIR)/tools/qdoc3/qdoc3 - HELPGENERATOR = qhelpgenerator + HELPGENERATOR = $$(QTDIR)/bin/qhelpgenerator } else { QDOC = $$(QTDIR)\tools\qdoc3\release\qdoc3.exe - HELPGENERATOR = qhelpgenerator + HELPGENERATOR = $$(QTDIR)\bin\qhelpgenerator.exe } QHP_FILE = $$OUT_PWD/doc/html/qtcreator.qhp -- GitLab