summaryrefslogtreecommitdiffstats
path: root/cpu_supplement
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-18 00:05:50 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:24 -0400
commit3a717592a9d13f7668c7fd3f9638adcc197d873d (patch)
tree6501d65ad6faba8e19be7f3c8d34f66536a70ec6 /cpu_supplement
parentFix rtemsconfig building. (diff)
downloadrtems-docs-3a717592a9d13f7668c7fd3f9638adcc197d873d.tar.bz2
Rework how conf.py is handled.
Needed to switch due to increasing complexity.
Diffstat (limited to '')
-rw-r--r--cpu_supplement/conf.py8
-rw-r--r--cpu_supplement/wscript10
2 files changed, 9 insertions, 9 deletions
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)