b5ad3a7944
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
12 lines
344 B
Makefile
12 lines
344 B
Makefile
# Override the default uClibc configuration
|
|
ifeq ($(strip $(BR2_TARGET_SOEKRIS_NET4521)),y)
|
|
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)
|
|
TARGETS+=linux
|
|
include target/device/Soekris/net4521/linux.mk
|
|
endif
|
|
|
|
endif
|