summaryrefslogtreecommitdiffstats
path: root/qmake/doc
diff options
context:
space:
mode:
authorKavindra Palaraja <kavindra.d+qt@gmail.com>2017-01-03 21:31:22 +0100
committerSimon Hausmann <simon.hausmann@qt.io>2017-01-06 12:42:24 +0000
commitafbdf20fed389fe56a948d166c7c62693f04ba6c (patch)
tree84ea93b7e4eab5cbabcfbafe67818276382c3f8d /qmake/doc
parentd330ae0da27f54ede10dabdc937bfb570ac244cb (diff)
Fixed docs explaining the Frameworks usage
Used the correct variable Task-number: QTBUG-48941 Change-Id: I832fa40d27ebba8e1787d5a8e819b9f5c17cf721 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'qmake/doc')
-rw-r--r--qmake/doc/snippets/code/doc_src_qmake-manual.pro2
-rw-r--r--qmake/doc/src/qmake-manual.qdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/qmake/doc/snippets/code/doc_src_qmake-manual.pro b/qmake/doc/snippets/code/doc_src_qmake-manual.pro
index 1710826f2d..8ba0aa0713 100644
--- a/qmake/doc/snippets/code/doc_src_qmake-manual.pro
+++ b/qmake/doc/snippets/code/doc_src_qmake-manual.pro
@@ -120,7 +120,7 @@ qmake -spec macx-g++
#! [14]
-QMAKE_LFLAGS += -F/path/to/framework/directory/
+LIBS += -F/path/to/framework/directory/
#! [14]
diff --git a/qmake/doc/src/qmake-manual.qdoc b/qmake/doc/src/qmake-manual.qdoc
index 4ff64f59d6..34e86b94c5 100644
--- a/qmake/doc/src/qmake-manual.qdoc
+++ b/qmake/doc/src/qmake-manual.qdoc
@@ -685,7 +685,7 @@
Directories other than the standard framework directory need to be specified
to the build system, and this is achieved by appending linker options to the
- \l{QMAKE_LFLAGS} variable, as shown in the following example:
+ \l{LIBS} variable, as shown in the following example:
\snippet code/doc_src_qmake-manual.pro 14