View | Details | Raw Unified | Return to bug 2002
Collapse All | Expand All

(-)a/ns3/_placeholder_ (-1 lines)
Line 1    Link Here 
1
This is a placeholder file used only to keep the ns3 directory present (needed for the WAF build system).
(-)a/src/wscript (-2 / +2 lines)
 Lines 442-448    Link Here 
442
def apply_ns3header(self):
442
def apply_ns3header(self):
443
    if self.module is None:
443
    if self.module is None:
444
        raise WafError("'module' missing on ns3headers object %s" % self)
444
        raise WafError("'module' missing on ns3headers object %s" % self)
445
    ns3_dir_node = self.bld.path.find_dir("ns3")
445
    ns3_dir_node = self.bld.path.find_or_declare("ns3")
446
    for filename in set(self.to_list(self.source)):
446
    for filename in set(self.to_list(self.source)):
447
        src_node = self.path.find_resource(filename)
447
        src_node = self.path.find_resource(filename)
448
        if src_node is None:
448
        if src_node is None:
 Lines 616-622    Link Here 
616
@TaskGen.after_method('process_rule')
616
@TaskGen.after_method('process_rule')
617
def apply_ns3moduleheader(self):
617
def apply_ns3moduleheader(self):
618
    ## get all of the ns3 headers
618
    ## get all of the ns3 headers
619
    ns3_dir_node = self.bld.path.find_dir("ns3")
619
    ns3_dir_node = self.bld.path.find_or_declare("ns3")
620
    all_headers_inputs = []
620
    all_headers_inputs = []
621
    found_the_module = False
621
    found_the_module = False
622
    for ns3headers in self.bld.all_task_gen:
622
    for ns3headers in self.bld.all_task_gen:

Return to bug 2002