diff options
author | David Boddie <dboddie@trolltech.com> | 2010-01-22 15:23:02 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2010-01-22 15:23:02 (GMT) |
commit | fa51e0a61fac98b20e55cb8734556d10acdbd1bc (patch) | |
tree | 23e554429bb2d95010ef148f5eee83e7ee264dbc /doc | |
parent | ed760b619ed0748d1428b9f08b785913883b560c (diff) | |
download | Qt-fa51e0a61fac98b20e55cb8734556d10acdbd1bc.zip Qt-fa51e0a61fac98b20e55cb8734556d10acdbd1bc.tar.gz Qt-fa51e0a61fac98b20e55cb8734556d10acdbd1bc.tar.bz2 |
Doc: Fixed installation information for Qt for Embedded Linux.
Reviewed-by: Trust Me
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/platforms/emb-install.qdoc | 4 | ||||
-rw-r--r-- | doc/src/snippets/code/doc_src_emb-install.qdoc | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/doc/src/platforms/emb-install.qdoc b/doc/src/platforms/emb-install.qdoc index c13fbef..623ba89 100644 --- a/doc/src/platforms/emb-install.qdoc +++ b/doc/src/platforms/emb-install.qdoc @@ -84,7 +84,9 @@ Before building the \l{Qt for Embedded Linux} library, run the \c ./configure script to configure the library for your development architecture. You can list all of the configuration system's - options by typing \c {./configure -help}. + options by typing + + \snippet doc/src/snippets/code/doc_src_emb-install.qdoc embedded help Note that by default, \l{Qt for Embedded Linux} is configured for installation in the \c{/usr/local/Trolltech/QtEmbedded-%VERSION%} diff --git a/doc/src/snippets/code/doc_src_emb-install.qdoc b/doc/src/snippets/code/doc_src_emb-install.qdoc index 60775d2..f24f087 100644 --- a/doc/src/snippets/code/doc_src_emb-install.qdoc +++ b/doc/src/snippets/code/doc_src_emb-install.qdoc @@ -41,18 +41,22 @@ //! [0] cd <anywhere> -gunzip qt-embedded-linux-commercial-src-%VERSION%.tar.gz -tar xf qt-embedded-linux-commercial-src-%VERSION%.tar +gunzip qt-everywhere-opensource-src-%VERSION%.tar.gz +tar xf qt-everywhere-opensource-src-%VERSION%.tar //! [0] //! [1] -~/qt-embedded-linux-commercial-src-%VERSION% +~/qt-everywhere-opensource-src-%VERSION% //! [1] +//! [embedded help] +./configure -embedded -help +//! [embedded help] + //! [2] -cd ~/qt-embedded-linux-commercial-src-%VERSION% +cd ~/qt-everywhere-opensource-src-%VERSION% ./configure -embedded [architecture] //! [2] |