From 8807787b10349f96e58c29bdeae8e5a97b632f4c Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Thu, 26 May 2016 20:24:08 +0000 Subject: [PATCH] remove alert character output from build script printfs --- core/c/jbigi/build_jbigi.sh | 2 +- core/c/jcpuid/build.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/c/jbigi/build_jbigi.sh b/core/c/jbigi/build_jbigi.sh index 73cc5db834..6926bdee4c 100755 --- a/core/c/jbigi/build_jbigi.sh +++ b/core/c/jbigi/build_jbigi.sh @@ -26,7 +26,7 @@ if [ -z $BITS ]; then exit fi - printf "\aBITS variable not set, $BITS bit system detected\n\a" >&2 + printf "BITS variable not set, $BITS bit system detected\n" >&2 fi # If JAVA_HOME isn't set we'll try to figure it out diff --git a/core/c/jcpuid/build.sh b/core/c/jcpuid/build.sh index 98fb67ab63..8c8a9af098 100755 --- a/core/c/jcpuid/build.sh +++ b/core/c/jcpuid/build.sh @@ -45,13 +45,13 @@ if [ -z $BITS ]; then exit fi - printf "\aBITS variable not set, $BITS bit system detected\n\a" >&2 + printf "BITS variable not set, $BITS bit system detected\n" >&2 fi if [ -z $CC ]; then export CC="gcc" - printf "\aCC variable not set, defaulting to $CC\n\a" >&2 + printf "CC variable not set, defaulting to $CC\n" >&2 fi @@ -64,7 +64,7 @@ elif [ $BITS -eq 64 ]; then export CFLAGS="-m64 -mtune=generic" export LDFLAGS="-m64" else - printf "\aBITS value \"$BITS\" not valid, please select 32 or 64\n\a" >&2 + printf "BITS value \"$BITS\" not valid, please select 32 or 64\n" >&2 exit 1 fi -- GitLab