diff options
author | 2021-01-18 22:27:00 +0100 | |
---|---|---|
committer | 2021-01-19 15:56:07 +0100 | |
commit | 0fc67aa4c7242bdc80b8c4282891045f52565276 (patch) | |
tree | 16334b71e9383ed5a7b7178caa5aad0b2d1d030e | |
parent | 11b5fdfc51b9ea1310f873c0b54c33381c94a5ad (diff) | |
download | buildroot-0fc67aa4c7242bdc80b8c4282891045f52565276.tar.gz buildroot-0fc67aa4c7242bdc80b8c4282891045f52565276.tar.bz2 |
docs/manual/pkg-cmake.txt: add _INSTALL_OPTS description
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 93daabcfbd8df17ea6f9943de34579e82dc41d00)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | docs/manual/adding-packages-cmake.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/manual/adding-packages-cmake.txt b/docs/manual/adding-packages-cmake.txt index 00974d30d8..73f0943024 100644 --- a/docs/manual/adding-packages-cmake.txt +++ b/docs/manual/adding-packages-cmake.txt @@ -126,6 +126,11 @@ typical packages will therefore only use a few of them. in the build step. These are passed after the +make+ command. By default, empty. +* +LIBFOO_INSTALL_OPTS+ contains the make options used to + install the package to the host directory. By default, the value + is +install+, which is correct for most CMake packages. It is still + possible to override it. + * +LIBFOO_INSTALL_STAGING_OPTS+ contains the make options used to install the package to the staging directory. By default, the value is +DESTDIR=$(STAGING_DIR) install/fast+, which is correct for most |