diff --git a/base/gcc/parse-config b/base/gcc/parse-config index c9d6212b2..abc592fad 100644 --- a/base/gcc/parse-config +++ b/base/gcc/parse-config @@ -20,7 +20,7 @@ if [ "${SDECFG_DEFAULT_CC:0:3}" = "gcc" -a "$SDECFG_PKG_GCC_STACKPRO" = 1 ]; the if ! hasflag NO-SSP; then var_append GCC_WRAPPER_INSERT ' ' '-fstack-protector' else - echo_warning 'Package incompatible with GCC stack-protector, disabled.' + echo_warning 'Package incompatible with GCC stack-protector, disabled' fi fi diff --git a/develop/ccache/parse-config b/develop/ccache/parse-config index c16d9d0a7..03bef513a 100644 --- a/develop/ccache/parse-config +++ b/develop/ccache/parse-config @@ -78,7 +78,7 @@ else else printf "x=%.2f\n", hit*100 / (hit+miss); print "ccache_hit=" hit "; ccache_miss=" miss; }' )" y=$( du -sh "$CCACHE_DIR" | cut -f1 ) - echo_status "Compiler Cache enabled: $x% ($y) cache hits so far." + echo_status "Compiler Cache enabled: $x% ($y) cache hits so far" ccache_print_status() { eval "$( ccache -s | gawk '/cache hit/ { hit=$3-'$ccache_hit'; }