common/autoconf/help.m4

changeset 2203
28b247535e18
parent 972
f3697e0783e2
child 2206
7ba4e17574e0
     1.1 --- a/common/autoconf/help.m4	Wed Feb 07 10:39:09 2018 -0800
     1.2 +++ b/common/autoconf/help.m4	Sun Mar 18 15:15:36 2018 -0700
     1.3 @@ -155,22 +155,6 @@
     1.4  [
     1.5    # Finally output some useful information to the user
     1.6  
     1.7 -  if test "x$CCACHE_FOUND" != x; then
     1.8 -    if  test "x$HAS_GOOD_CCACHE" = x; then
     1.9 -      CCACHE_STATUS="installed, but disabled (version older than 3.1.4)"
    1.10 -      CCACHE_HELP_MSG="You have ccache installed, but it is a version prior to 3.1.4. Try upgrading."
    1.11 -    else
    1.12 -      CCACHE_STATUS="installed and in use"
    1.13 -    fi
    1.14 -  else
    1.15 -    if test "x$GCC" = xyes; then
    1.16 -      CCACHE_STATUS="not installed (consider installing)"
    1.17 -      CCACHE_HELP_MSG="You do not have ccache installed. Try installing it."
    1.18 -    else
    1.19 -      CCACHE_STATUS="not available for your system"
    1.20 -    fi
    1.21 -  fi
    1.22 -
    1.23    printf "\n"
    1.24    printf "====================================================\n"
    1.25    printf "A new configuration has been successfully created in\n"
    1.26 @@ -201,17 +185,11 @@
    1.27    printf "Build performance summary:\n"
    1.28    printf "* Cores to use:   $JOBS\n"
    1.29    printf "* Memory limit:   $MEMORY_SIZE MB\n"
    1.30 -  printf "* ccache status:  $CCACHE_STATUS\n"
    1.31 +  if test "x$CCACHE_STATUS" != "x"; then
    1.32 +    printf "* ccache status:  $CCACHE_STATUS\n"
    1.33 +  fi
    1.34    printf "\n"
    1.35  
    1.36 -  if test "x$CCACHE_HELP_MSG" != x && test "x$HIDE_PERFORMANCE_HINTS" = "xno"; then
    1.37 -    printf "Build performance tip: ccache gives a tremendous speedup for C++ recompilations.\n"
    1.38 -    printf "$CCACHE_HELP_MSG\n"
    1.39 -    HELP_MSG_MISSING_DEPENDENCY([ccache])
    1.40 -    printf "$HELP_MSG\n"
    1.41 -    printf "\n"
    1.42 -  fi
    1.43 -
    1.44    if test "x$BUILDING_MULTIPLE_JVM_VARIANTS" = "xyes"; then
    1.45      printf "NOTE: You have requested to build more than one version of the JVM, which\n"
    1.46      printf "will result in longer build times.\n"

mercurial