summaryrefslogtreecommitdiffstats
path: root/target/linux/x86
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-10-18 11:45:33 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-10-18 11:45:33 +0000
commite855d498e34227ebd690c48aa5f4ae7df8807433 (patch)
tree8019feaefe121103d79317b0b060ead77153a66a /target/linux/x86
parent6da1c9d3eae138e95e884aa8a22585b33952638b (diff)
downloadmaster-31e0f0ae-e855d498e34227ebd690c48aa5f4ae7df8807433.tar.gz
master-31e0f0ae-e855d498e34227ebd690c48aa5f4ae7df8807433.tar.bz2
master-31e0f0ae-e855d498e34227ebd690c48aa5f4ae7df8807433.zip
x86: fix condition in base-files.mk
TARGET_x86_generic_Soekris48xx is not defined, CONFIG_TARGET_x86_generic_Soekris48xx is This changes makes it possible to override the network config for soekris net48xx and net45xx targets. Signed-off-by: Bruno Randolf <br1@einfach.org> SVN-Revision: 38450
Diffstat (limited to 'target/linux/x86')
-rw-r--r--target/linux/x86/base-files.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/base-files.mk b/target/linux/x86/base-files.mk
index 889f944d75..6c6e6f1688 100644
--- a/target/linux/x86/base-files.mk
+++ b/target/linux/x86/base-files.mk
@@ -1,4 +1,4 @@
-ifneq ($(TARGET_x86_generic_Soekris48xx)$(TARGET_x86_generic_Soekris45xx),)
+ifneq ($(CONFIG_TARGET_x86_generic_Soekris48xx)$(CONFIG_TARGET_x86_generic_Soekris45xx),)
define Package/base-files/install-target
rm -f $(1)/etc/config/network
endef