diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2012-11-27 11:59:16 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-27 17:07:39 -0800 |
commit | 1d989fafba761d29b3b2960bf388821d3ac0f6e7 (patch) | |
tree | 327a01d004a27767da9977393bbafba78ee57048 /docs/manual/adding-packages-autotools.txt | |
parent | 670d60dc919fe6d99224ad1056c426812b38d108 (diff) | |
download | buildroot-novena-1d989fafba761d29b3b2960bf388821d3ac0f6e7.tar.gz buildroot-novena-1d989fafba761d29b3b2960bf388821d3ac0f6e7.zip |
manual: trivial fixes
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'docs/manual/adding-packages-autotools.txt')
-rw-r--r-- | docs/manual/adding-packages-autotools.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt index 1184b6996..4127df46e 100644 --- a/docs/manual/adding-packages-autotools.txt +++ b/docs/manual/adding-packages-autotools.txt @@ -133,13 +133,13 @@ cases, typical packages will therefore only use a few of them. * +LIBFOO_INSTALL_STAGING_OPT+ contains the make options used to install the package to the staging directory. By default, the - value is +DESTDIR=$$(STAGING_DIR) install+, which is + value is +DESTDIR=$(STAGING_DIR) install+, which is correct for most autotools packages. It is still possible to override it. * +LIBFOO_INSTALL_TARGET_OPT+ contains the make options used to install the package to the target directory. By default, the - value is +DESTDIR=$$(TARGET_DIR) install+. The default + value is +DESTDIR=$(TARGET_DIR) install+. The default value is correct for most autotools packages, but it is still possible to override it if needed. |