make/solaris/makefiles/adjust-mflags.sh

Print this page
rev 6881 : 8028407: adjust-mflags.sh failed build with GNU Make 4.0 with -I<path contains j>
Reviewed-by: erikj

@@ -1,8 +1,8 @@
 #! /bin/sh
 #
-# Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License version 2 only, as
 # published by the Free Software Foundation.

@@ -62,11 +62,11 @@
 # Normalize any -jN argument to the form " -j${HBJ}"
 MFLAGS=`
         echo "$MFLAGS" \
         | sed '
                 s/^-/ -/
-                s/ -\([^        ][^     ]*\)j/ -\1 -j/
+                s/ -\([^        I][^    I]*\)j/ -\1 -j/
                 s/ -j[0-9][0-9]*/ -j/
                 s/ -j\([^       ]\)/ -j -\1/
                 s/ -j/ -j'${HOTSPOT_BUILD_JOBS:-${default_build_jobs}}'/
         ' `