From 3a717592a9d13f7668c7fd3f9638adcc197d873d Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Mon, 18 Jan 2016 00:05:50 -0500 Subject: Rework how conf.py is handled. Needed to switch due to increasing complexity. --- cpu_supplement/conf.py | 8 ++++++++ cpu_supplement/wscript | 10 +--------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 cpu_supplement/conf.py (limited to 'cpu_supplement') diff --git a/cpu_supplement/conf.py b/cpu_supplement/conf.py new file mode 100644 index 0000000..5e042a7 --- /dev/null +++ b/cpu_supplement/conf.py @@ -0,0 +1,8 @@ +import sys, os +sys.path.append(os.path.abspath('../common/')) + +from conf import * + +version = '1.0' +release = '5.0' + diff --git a/cpu_supplement/wscript b/cpu_supplement/wscript index 906be46..0956726 100644 --- a/cpu_supplement/wscript +++ b/cpu_supplement/wscript @@ -8,12 +8,4 @@ def configure(ctx): cmd_configure(ctx) def build(ctx): - - sub = { - "VERSION": "1.0", - "RELEASE": "5.0.0", - "DOC": "CPU Supplement", - "FILE_DOC": "rtemcpu_supplement", - } - - cmd_build(ctx, sub) + cmd_build(ctx) -- cgit v1.2.3