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. --- filesystem/conf.py | 8 ++++++++ filesystem/wscript | 10 +--------- 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 filesystem/conf.py (limited to 'filesystem') diff --git a/filesystem/conf.py b/filesystem/conf.py new file mode 100644 index 0000000..5e042a7 --- /dev/null +++ b/filesystem/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/filesystem/wscript b/filesystem/wscript index 9c0048e..0956726 100644 --- a/filesystem/wscript +++ b/filesystem/wscript @@ -8,12 +8,4 @@ def configure(ctx): cmd_configure(ctx) def build(ctx): - - sub = { - "VERSION": "1.0", - "RELEASE": "5.0.0", - "DOC": "Filesystem", - "FILE_DOC": "rtemsfilesystem", - } - - cmd_build(ctx, sub) + cmd_build(ctx) -- cgit v1.2.3