diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-28 13:56:00 -0400 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-07-09 01:31:19 -0700 |
commit | 216baecdc3b15c10d293d156ad80702e555c6127 (patch) | |
tree | 7df32e8da03de767c0f036bf69e8d6058b0b315f /Makefile.in | |
parent | 7f30e1db5156c188288ab3c789f25c5803542f39 (diff) | |
download | uClibc-alpine-216baecdc3b15c10d293d156ad80702e555c6127.tar.bz2 uClibc-alpine-216baecdc3b15c10d293d156ad80702e555c6127.tar.xz |
stop installing/screwing with linux-headers
It is not uClibc's business to make sure the user's toolchain is sane and
has proper kernel headers configured/installed. If they don't, then they
need to fix their toolchain, we don't need to try and magically do it for
them.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index e937b11aa..c61badb92 100644 --- a/Makefile.in +++ b/Makefile.in @@ -185,11 +185,7 @@ $(LOCAL_INSTALL_PATH): $(Q)$(MAKE) PREFIX=$(shell pwd)/ RUNTIME_PREFIX=./ \ DEVEL_PREFIX=$(LOCAL_INSTALL_PATH)/usr/ \ HOSTCC="$(HOSTCC)" \ - install_kernel_headers - $(Q)$(MAKE) PREFIX=$(shell pwd)/ RUNTIME_PREFIX=./ \ - DEVEL_PREFIX=$(LOCAL_INSTALL_PATH)/usr/ \ - HOSTCC="$(HOSTCC)" \ - install_dev + install install: install_runtime install_dev @@ -199,11 +195,6 @@ RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell $(top_srcdir)extra/scripts/rela $(top_builddir)extra/scripts/unifdef: $(top_srcdir)extra/scripts/unifdef.c $(hcompile.u) -# Installs kernel header files (linux/*, asm/*, asm-generic/*). -install_kernel_headers: headers - top_builddir=$(top_builddir) \ - $(top_srcdir)extra/scripts/install_kernel_headers.sh include $(PREFIX)$(DEVEL_PREFIX)include - # Installs header files. install_headers: headers $(top_builddir)extra/scripts/unifdef $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include |