summaryrefslogtreecommitdiff
path: root/libbsd_waf.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbsd_waf.py')
-rw-r--r--libbsd_waf.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/libbsd_waf.py b/libbsd_waf.py
index 745512bf..65f5ae0f 100644
--- a/libbsd_waf.py
+++ b/libbsd_waf.py
@@ -98,7 +98,6 @@ def build(bld):
net_cfg_netmask = None
net_cfg_peer_ip = None
net_cfg_gateway_ip = None
- net_tap_interface = None
try:
net_cfg_lines = open(bld.env.NET_CONFIG).readlines()
except:
@@ -120,8 +119,6 @@ def build(bld):
net_cfg_peer_ip = rhs
if lhs == "NET_CFG_GATEWAY_IP":
net_cfg_gateway_ip = rhs
- if lhs == "NET_TAP_INTERFACE":
- net_tap_interface = rhs
bld(target = "testsuite/include/rtems/bsd/test/network-config.h",
source = "testsuite/include/rtems/bsd/test/network-config.h.in",
rule = "sed -e 's/@NET_CFG_SELF_IP@/%s/' -e 's/@NET_CFG_NETMASK@/%s/' -e 's/@NET_CFG_PEER_IP@/%s/' -e 's/@NET_CFG_GATEWAY_IP@/%s/' < ${SRC} > ${TGT}" % (net_cfg_self_ip, net_cfg_netmask, net_cfg_peer_ip, net_cfg_gateway_ip),