소스 검색

Only include linux makefile when properly selected

Eric Andersen 20 년 전
부모
커밋
a18f36417b
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      target/device/Via/epia-mii/linux.mk

+ 2 - 0
target/device/Via/epia-mii/linux.mk

@@ -19,6 +19,7 @@
 #  -Erik
 #  -Erik
 #
 #
 #############################################################
 #############################################################
+ifneq ($(filter $(TARGETS),linux),)
 
 
 # Version of Linux to download and then apply patches to
 # Version of Linux to download and then apply patches to
 DOWNLOAD_LINUX_VERSION=2.6.11.5
 DOWNLOAD_LINUX_VERSION=2.6.11.5
@@ -110,3 +111,4 @@ linuxclean: clean
 linux-dirclean:
 linux-dirclean:
 	rm -rf $(LINUX_DIR)
 	rm -rf $(LINUX_DIR)
 
 
+endif