diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-10-20 11:32:25 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-10-20 11:32:25 +0000 |
commit | 886b274a5cbe66f470867004a73384451b140c19 (patch) | |
tree | 9b7ba18a4996357f10c9939aad65fa4f87ba5e53 /package | |
parent | fedf24cf51f39922ce2d9ebf478a4a83477c789f (diff) |
BR2_HAVE_DOCUMENTATION: add option to remove documentation from target
Some packages' install-strip target install quite big documentation,
so create an option to remove it similar to the existing man/info options.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.autotools.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 0925feb06..9f7a54807 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -256,6 +256,9 @@ $(PROJECT_BUILD_DIR)/autotools-stamps/%_target_installed: $(if $(BR2_HAVE_INFOPAGES),,for d in info share/info; do \ rm -rf $(TARGET_DIR)/$$d $(TARGET_DIR)/usr/$$d; \ done) + $(if $(BR2_HAVE_DOCUMENTATION),,for d in doc share/doc; do \ + rm -rf $(TARGET_DIR)/$$d $(TARGET_DIR)/usr/$$d; \ + done) $(Q)mkdir -p $(@D) touch $@ |