소스 검색

Patrick Doyle writes:

target/device/Soekris/net4521/linux.mk is missing an endif for 
the first if statement

target/device/Soekris/Makefile.in needs to set TARGETS before 
including linux.mk since the file checks the TARGETS variables
Mike Frysinger 20 년 전
부모
커밋
b5ad3a7944
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      target/device/Soekris/Makefile.in
  2. 1 0
      target/device/Soekris/net4521/linux.mk

+ 1 - 2
target/device/Soekris/Makefile.in

@@ -4,9 +4,8 @@ UCLIBC_CONFIG_FILE:=target/device/Soekris/net4521/uClibc.config
 BR2_PACKAGE_BUSYBOX_CONFIG:=target/device/Soekris/net4521/busybox.config
 
 ifeq ($(strip $(BR2_PACKAGE_LINUX)),y)
-include target/device/Soekris/net4521/linux.mk
 TARGETS+=linux
+include target/device/Soekris/net4521/linux.mk
 endif
 
 endif
-

+ 1 - 0
target/device/Soekris/net4521/linux.mk

@@ -122,3 +122,4 @@ linuxclean: clean
 linux-dirclean:
 	rm -rf $(LINUX_DIR)
 
+endif