summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-08-17 00:25:30 +0000
committerEric Andersen <andersen@codepoet.org>2005-08-17 00:25:30 +0000
commit0778c8cb377a6375eefd658e8114215f63a1f4c3 (patch)
tree046cd3b8088ec39fa32b5e3e3241f23410f1ebff /Makefile
parent8196d43357527493e42fd8e3b6e6e99c9f4694fa (diff)
We _must_ copy include/asm/ and include/linux/ when installing headers, since
once we build uClibc against those, they become part of uClibc's ABI and must be included as part of the install.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 979a5255e..3d7cb0d1f 100644
--- a/Makefile
+++ b/Makefile
@@ -158,8 +158,7 @@ install_dev:
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
-$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
- tar -chf - include \
- --exclude .svn --exclude include/linux --exclude include/asm'*' \
+ tar -chf - include --exclude .svn --exclude CVS \
| tar -xf - -C $(PREFIX)$(DEVEL_PREFIX)
ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
# Remove floating point related headers since float support is disabled.