summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorGene Smith <gds@chartertn.net>2015-06-24 01:04:51 -0400
committerChris Johns <chrisj@rtems.org>2015-06-26 14:07:03 +1000
commit45a60417e81d98bf3132368d0d5980e7939264b2 (patch)
treef7065d347fa03f83dc68490b1290be21b2bbee47 /wscript
parentcondvar01: Initialize mutex (diff)
downloadrtems-libbsd-45a60417e81d98bf3132368d0d5980e7939264b2.tar.bz2
modified: waf_generator.py Fix incorrect encoding of NET_CFG_GATEWAY_IP and change _IP_IP ending to _IP. Remove _IP_IP ending from NET_TAP_INTERFACE.
modified: wscript Re-generated from "./freebsd-to-rtems -m" based on waf_generator.py
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/wscript b/wscript
index 8c653a4a..86d3ccf5 100644
--- a/wscript
+++ b/wscript
@@ -128,13 +128,13 @@ def build(bld):
net_cfg_netmask = rhs
if lhs == "NET_CFG_PEER_IP":
net_cfg_peer_ip = rhs
- if lhs == "NET_CFG_GATEWAY_IP_IP":
+ if lhs == "NET_CFG_GATEWAY_IP":
net_cfg_gateway_ip = rhs
- if lhs == "NET_TAP_INTERFACE_IP_IP":
+ 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_netmask),
+ 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),
update_outputs = True)
# KVM Symbols