changeset 21514:b426469fadb7

mx: better description for strict-compliance and fix typo
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 06 May 2015 17:04:06 +0200
parents d760a7d64801
children 1ab7802d35c9
files mx/mx_graal.py mxtool/mx.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Wed May 06 16:54:59 2015 +0200
+++ b/mx/mx_graal.py	Wed May 06 17:04:06 2015 +0200
@@ -1759,7 +1759,7 @@
 
     # Force
     if not mx._opts.strict_compliance:
-        mx.log("[gate] foring strict compliance")
+        mx.log("[gate] forcing strict compliance")
         mx._opts.strict_compliance = True
 
     tasks = []
--- a/mxtool/mx.py	Wed May 06 16:54:59 2015 +0200
+++ b/mxtool/mx.py	Wed May 06 17:04:06 2015 +0200
@@ -1680,7 +1680,7 @@
         self.add_argument('--user-home', help='users home directory', metavar='<path>', default=os.path.expanduser('~'))
         self.add_argument('--java-home', help='primary JDK directory (must be JDK 7 or later)', metavar='<path>')
         self.add_argument('--extra-java-homes', help='secondary JDK directories separated by "' + os.pathsep + '"', metavar='<path>')
-        self.add_argument('--strict-compliance', action='store_true', dest='strict_compliance', help='Projects of a certain compliance will only be built with a JDK of this exact compliance', default=False)
+        self.add_argument('--strict-compliance', action='store_true', dest='strict_compliance', help='Projects with an explicit compliance will only be built if a JDK exactly matching the compliance is available', default=False)
         self.add_argument('--ignore-project', action='append', dest='ignored_projects', help='name of project to ignore', metavar='<name>', default=[])
         self.add_argument('--kill-with-sigquit', action='store_true', dest='killwithsigquit', help='send sigquit first before killing child processes')
         if get_os() != 'windows':