common/autoconf/compare.sh.in

Mon, 14 Sep 2020 16:42:03 +0100

author
andrew
date
Mon, 14 Sep 2020 16:42:03 +0100
changeset 2554
7f60c2d9823e
parent 2212
dd97daafa80b
child 2316
64a3eeabf6e5
permissions
-rw-r--r--

Added tag jdk8u272-b08 for changeset 34c6baf21464

     1 #!/bin/bash
     2 #
     3 # Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
     4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5 #
     6 # This code is free software; you can redistribute it and/or modify it
     7 # under the terms of the GNU General Public License version 2 only, as
     8 # published by the Free Software Foundation.
     9 #
    10 # This code is distributed in the hope that it will be useful, but WITHOUT
    11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    13 # version 2 for more details (a copy is included in the LICENSE file that
    14 # accompanied this code).
    15 #
    16 # You should have received a copy of the GNU General Public License version
    17 # 2 along with this work; if not, write to the Free Software Foundation,
    18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    19 #
    20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21 # or visit www.oracle.com if you need additional information or have any
    22 # questions.
    23 #
    25 # This script is processed by configure before it's usable. It is run from
    26 # the root of the build directory.
    29 ##########################################################################################
    30 # Substitutions from autoconf
    32 LEGACY_BUILD_DIR=@OPENJDK_TARGET_OS@-@OPENJDK_TARGET_CPU_LEGACY@
    34 OPENJDK_TARGET_OS="@OPENJDK_TARGET_OS@"
    35 OPENJDK_TARGET_CPU="@OPENJDK_TARGET_CPU@"
    37 AWK="@AWK@"
    38 CAT="@CAT@"
    39 CMP="@CMP@"
    40 CP="@CP@"
    41 CUT="@CUT@"
    42 DIFF="@DIFF@"
    43 DUMPBIN="@FIXPATH@ @DUMPBIN@"
    44 EXPR="@EXPR@"
    45 FILE="@FILE@"
    46 FIND="@FIND@"
    47 GREP="@GREP@"
    48 JAVAP="@FIXPATH@ @BOOT_JDK@/bin/javap"
    49 LDD="@LDD@"
    50 MKDIR="@MKDIR@"
    51 NAWK="@NAWK@"
    52 NM="@GNM@"
    53 OBJDUMP="@OBJDUMP@"
    54 OTOOL="@OTOOL@"
    55 PRINTF="@PRINTF@"
    56 READELF="@READELF@"
    57 RM="@RM@"
    58 SED="@SED@"
    59 SORT="@SORT@"
    60 STAT="@STAT@"
    61 STRIP="@POST_STRIP_CMD@"
    62 TEE="@TEE@"
    63 UNIQ="@UNIQ@"
    64 UNPACK200="@FIXPATH@ @BOOT_JDK@/bin/unpack200"
    65 UNZIP="@UNZIP@"
    67 SRC_ROOT="@TOPDIR@"
    69 if [ "$OPENJDK_TARGET_OS" = "windows" ]; then
    70   PATH="@VS_PATH@"
    71 fi
    73 # Now locate the main script and run it.
    74 REAL_COMPARE_SCRIPT="$SRC_ROOT/common/bin/compare.sh"
    75 if [ ! -e "$REAL_COMPARE_SCRIPT" ]; then
    76   echo "Error: Cannot locate compare script, it should have been in $REAL_COMPARE_SCRIPT"
    77   exit 1
    78 fi
    80 . "$REAL_COMPARE_SCRIPT" "$@"

mercurial