bug 1602: do not include directory above in gcc include path
authorTom Henderson <tomh@tomh.org>
Sun, 17 Mar 2013 23:04:59 -0700
changeset 9261 13b3ddbaac67
parent 9260 9d47dca16cb3
child 9262 ed3daba53a83
bug 1602: do not include directory above in gcc include path
wscript
--- a/wscript	Sun Mar 17 22:10:16 2013 -0700
+++ b/wscript	Sun Mar 17 23:04:59 2013 -0700
@@ -601,7 +601,7 @@
     program.target = "%s%s-%s%s" % (wutils.APPNAME, wutils.VERSION, name, bld.env.BUILD_SUFFIX)
     # Each of the modules this program depends on has its own library.
     program.ns3_module_dependencies = ['ns3-'+dep for dep in dependencies]
-    program.includes = "# #/.."
+    program.includes = "#"
     program.use = program.ns3_module_dependencies
     if program.env['ENABLE_STATIC_NS3']:
         if sys.platform == 'darwin':