diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-02-24 19:38:09 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-02-24 19:38:09 +0000 |
commit | 970731e1ec67827e225f9c8c21cee753ea8a8ff2 (patch) | |
tree | f9abc9fcd9cc2583b82d369bbc9f5dd6507ed5b0 | |
parent | a6cfd2849093f5750282d70c05b03aa9ba0dfd28 (diff) | |
download | buildroot-novena-970731e1ec67827e225f9c8c21cee753ea8a8ff2.tar.gz buildroot-novena-970731e1ec67827e225f9c8c21cee753ea8a8ff2.zip |
target/device/Soekris/net4521/linux.mk should only be used when
BR2_TARGET_SOEKRIS_NET4521 is enabled.
-rw-r--r-- | target/device/Soekris/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/device/Soekris/Makefile.in b/target/device/Soekris/Makefile.in index 4aaf1ef8e..8f9fc24cc 100644 --- a/target/device/Soekris/Makefile.in +++ b/target/device/Soekris/Makefile.in @@ -2,10 +2,11 @@ ifeq ($(strip $(BR2_TARGET_SOEKRIS_NET4521)),y) UCLIBC_CONFIG_FILE:=target/device/Soekris/net4521/uClibc.config BUSYBOX_CONFIG:=target/device/Soekris/net4521/busybox.config -endif ifeq ($(strip $(BR2_PACKAGE_LINUX)),y) include target/device/Soekris/net4521/linux.mk TARGETS+=linux endif +endif + |