diff options
author | Phil Sutter <phil@nwl.cc> | 2009-08-02 00:26:52 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2009-08-02 15:46:19 +0200 |
commit | 24a7b2b06786d4d14ea1f5b5cf2ffb3430a2fb0e (patch) | |
tree | 8b8dd384afba2b7f960fb456d39eef64c55d47f6 /package/iptables | |
parent | 17a64091553c08d404917f37453555d674d9b324 (diff) |
change all 'depends' lines to 'depends on' ones
This is only a formal change, the semantics stay exactly the same. But
linux-2.6's mconf forces this nowadays, so stay compatible.
Diffstat (limited to 'package/iptables')
-rw-r--r-- | package/iptables/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/iptables/Config.in b/package/iptables/Config.in index bf7fd0ebb..5b82599ad 100644 --- a/package/iptables/Config.in +++ b/package/iptables/Config.in @@ -1,7 +1,7 @@ config ADK_COMPILE_IPTABLES bool default n - depends ADK_PACKAGE_IPTABLES || ADK_PACKAGE_IP6TABLES + depends on ADK_PACKAGE_IPTABLES || ADK_PACKAGE_IP6TABLES config ADK_PACKAGE_IPTABLES prompt "iptables.......................... IPv4 firewall administration tool" @@ -25,7 +25,7 @@ config ADK_PACKAGE_IPTABLES_UTILS prompt "iptables-utils.................. Save and restore utilities" tristate default n - depends ADK_PACKAGE_IPTABLES + depends on ADK_PACKAGE_IPTABLES help iptables-save and iptables-restore for Iptables (IPv4) |