diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-10-18 11:45:33 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-10-18 11:45:33 +0000 |
commit | 722e5eed14ecab7ec30f9c91b560ca326d1a3dda (patch) | |
tree | 423f60496abf869df2967f8ca6c8fc2992e04d9b /target | |
parent | 04f2b28bd674fd6013b93ea6877389f62d2d6005 (diff) | |
download | upstream-722e5eed14ecab7ec30f9c91b560ca326d1a3dda.tar.gz upstream-722e5eed14ecab7ec30f9c91b560ca326d1a3dda.tar.bz2 upstream-722e5eed14ecab7ec30f9c91b560ca326d1a3dda.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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38450 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/x86/base-files.mk | 2 |
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 |