Bugzilla – Bug 5
Minor error in BUILD file documentation
Last modified: 2006-11-16 06:05:55 UTC
In the root file, the 'BUILD' documenation file contains the following line: my_module = Ns3Module ('my', 'src/my_dir') I believe the line intended is: my_module = build.Ns3Module ('my', 'src/my_dir') diff -r 7ad2664c9515 BUILD --- a/BUILD Mon Nov 6 13:25:35 2006 +++ b/BUILD Wed Nov 15 14:34:08 2006 @@ -135,7 +135,7 @@ # create a new module. First arg is the name of # the new module. Second arg is the directory in # which all source files for this module reside. -my_module = Ns3Module ('my', 'src/my_dir') +my_module = build.Ns3Module ('my', 'src/my_dir') # add it to build system ns3.add (my_module) # specify module dependencies. Here, depends
Created attachment 2 [details] Suggested patch for the build documentation file
applied patch. thanks