浏览代码

Paul Brook writes:
Firstly it wasn't including $(PREFIX) when figuring out if the kernel headers
are in already in the the right place.

Mike Frysinger 19 年之前
父节点
当前提交
e5cc40c3be
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Makefile.in

+ 1 - 1
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 \