summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-02-08 12:37:34 -0700
committerVijay Kumar Banerjee <vijay@rtems.org>2021-02-08 12:37:34 -0700
commitce3e56799f71d3f443136e21450140e4270e89e4 (patch)
tree0875b05336a5f25b3bf4efc961c7286636d015d8
parent4cf9b00166f6657df8efe1b870174e2e12a006e1 (diff)
wscript: remove --rtems-source option
-rw-r--r--lnetworking.py3
-rw-r--r--wscript4
2 files changed, 1 insertions, 6 deletions
diff --git a/lnetworking.py b/lnetworking.py
index 65e025f..490a4b5 100644
--- a/lnetworking.py
+++ b/lnetworking.py
@@ -36,8 +36,7 @@ for root, dirs, files in os.walk("."):
include_files.append(root[2:])
def build(bld):
- cpukit_include = os.path.join(bld.env.RTEMS_SOURCE, 'cpukit', 'include')
- include_path = ['./', os.path.relpath(cpukit_include), os.path.relpath(bld.env.PREFIX)]
+ include_path = ['./', os.path.relpath(bld.env.PREFIX)]
arch_lib_path = rtems.arch_bsp_lib_path(bld.env.RTEMS_VERSION,
bld.env.RTEMS_ARCH_BSP)
diff --git a/wscript b/wscript
index 327a8ac..7f14ee4 100644
--- a/wscript
+++ b/wscript
@@ -44,12 +44,8 @@ def init(ctx):
def options(opt):
rtems.options(opt)
- opt.add_option("--rtems-source",
- dest = "rtems_source",
- help = "Path to RTEMS source files for includes")
def configure(conf):
- conf.env.RTEMS_SOURCE = conf.options.rtems_source
rtems.configure(conf)
def build(bld):