# HG changeset patch # User Gilles Duboscq # Date 1430924646 -7200 # Node ID b426469fadb79b0f98dedc9f5f8a7be72a3ee7d0 # Parent d760a7d64801ae338d9e130a0ae362b8a1f2038a mx: better description for strict-compliance and fix typo diff -r d760a7d64801 -r b426469fadb7 mx/mx_graal.py --- 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 = [] diff -r d760a7d64801 -r b426469fadb7 mxtool/mx.py --- 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='', default=os.path.expanduser('~')) self.add_argument('--java-home', help='primary JDK directory (must be JDK 7 or later)', metavar='') self.add_argument('--extra-java-homes', help='secondary JDK directories separated by "' + os.pathsep + '"', metavar='') - 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='', default=[]) self.add_argument('--kill-with-sigquit', action='store_true', dest='killwithsigquit', help='send sigquit first before killing child processes') if get_os() != 'windows':