summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-11 22:56:39 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-11 22:56:39 +0000
commite5cc40c3bed06f236bce1c63eef1d5f5f8201ac6 (patch)
tree3a8e0fb189e2b0fc7fdda64177c74857f3d22f53 /Makefile.in
parentda738bcee47f9e2423bcc66f379e0c5e44c62b78 (diff)
Paul Brook writes:
Firstly it wasn't including $(PREFIX) when figuring out if the kernel headers are in already in the the right place.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 7ed24aef8..14684a8b1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -108,7 +108,7 @@ RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell $(top_srcdir)extra/scripts/rela
install_headers:
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
printf ".svn\n.cvsignore\nCVS\n" > tar_exclude ; \
- if [ "$(KERNEL_SOURCE)" = "$(DEVEL_PREFIX)" ] ; then \
+ if [ "$(KERNEL_SOURCE)" = "$(PREFIX)$(DEVEL_PREFIX)" ] ; then \
ls -1d include/linux include/asm* >> tar_exclude ; \
fi ; \
$(TAR) -chf - -X tar_exclude include \