diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2013-12-05 11:54:06 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-06 09:39:36 +0100 |
commit | 4a8e8fc628d129466caa13be7d4aa9be31864104 (patch) | |
tree | ceae5dd7f3a0e2af78a6e92192c2b8c5a7ca81de /docs/manual/adding-packages-autotools.txt | |
parent | 0a9cedbcf49641b2569e0a137818ad9f8c539edd (diff) | |
download | buildroot-4a8e8fc628d129466caa13be7d4aa9be31864104.tar.gz buildroot-4a8e8fc628d129466caa13be7d4aa9be31864104.zip |
manual: remove references to uninstall commands
[Peter: keep clean comment as pointed out by Arnout]
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'docs/manual/adding-packages-autotools.txt')
-rw-r--r-- | docs/manual/adding-packages-autotools.txt | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt index 19ec2c15fb..27991b2595 100644 --- a/docs/manual/adding-packages-autotools.txt +++ b/docs/manual/adding-packages-autotools.txt @@ -148,14 +148,6 @@ cases, typical packages will therefore only use a few of them. * +LIBFOO_CLEAN_OPT+ contains the make options used to clean the package. By default, the value is +clean+. -* +LIBFOO_UNINSTALL_STAGING_OPT+, contains the make - options used to uninstall the package from the staging directory. By - default, the value is +DESTDIR=$$(STAGING_DIR) uninstall+. - -* +LIBFOO_UNINSTALL_TARGET_OPT+, contains the make - options used to uninstall the package from the target directory. By - default, the value is +DESTDIR=$$(TARGET_DIR) uninstall+. - With the autotools infrastructure, all the steps required to build and install the packages are already defined, and they generally work well for most autotools-based packages. However, when required, it is |