diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-07-12 19:53:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-07-12 19:53:12 +0000 |
commit | dadad95190710ae2e7c2c0cc9cacf5541f99c6f7 (patch) | |
tree | 93d8e20d5016e75aced3b98dd540b31d050ee9ee /package/ncurses/ncurses.mk | |
parent | b5ad3a7944cc37892e8da014a955677558fa4e50 (diff) |
Thomas Lundquist writes:
If I understand you correctly, you want the ncurses development headers
on the target.
a patch for this (named target_headers.patch and includes similar
options for a few other libs in buildroot) can be found at:
http://www.zelow.no/floppyfw/download/Development/Patches/buildroot/
(a few packages there aswell)
it will add an option to put headers on target for ncurses, zlib and
openssl.
Thomas.
Diffstat (limited to 'package/ncurses/ncurses.mk')
-rw-r--r-- | package/ncurses/ncurses.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/ncurses/ncurses.mk b/package/ncurses/ncurses.mk index 106f773b0..8648521dc 100644 --- a/package/ncurses/ncurses.mk +++ b/package/ncurses/ncurses.mk @@ -149,3 +149,6 @@ ncurses-dirclean: ifeq ($(strip $(BR2_PACKAGE_NCURSES)),y) TARGETS+=ncurses endif +ifeq ($(strip $(BR2_PACKAGE_NCURSES_TARGET_HEADERS)),y) +TARGETS+=ncurses-headers +endif |