From 85306e7f140ff591c5cad93804ee46d7cb3931cd Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Tue, 3 Mar 2015 09:24:06 -0500 Subject: Add VERSION and APPNAME so 'waf dist' works correctly. --- wscript | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wscript b/wscript index 6a5670f88c..1113a7bc90 100644 --- a/wscript +++ b/wscript @@ -20,6 +20,15 @@ from rtems_waf.switch import options from rtems_waf.tools import get_file_mtime from os.path import exists +# RTEMS Version for waf +VERSION='%d.%d' % (config["rtems_version_major"], config["rtems_version_minor"]) +if config["rtems_version_revision"]: + VERSION = "%s.%d" % (VERSION, config["rtems_version_revision"]) + if config["rtems_version_patch"]: # There can't be a patch version without a revision. + VERSION = "%s.%d" % (VERSION, config["rtems_version_patch"]) + +APPNAME='rtems' + pprint.__doc__ = None # Make sure waf doesn't see this as a command. Configure.autoconfig = 'clobber' # Apply the original configure command-line arguments -- cgit v1.2.3