diff mxtool/mx.py @ 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 fbe449ca9707
children 28cbfacd0518
line wrap: on
line diff
--- 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':