remove alert character output from build script printfs

This commit is contained in:
zzz
2016-05-26 20:24:08 +00:00
parent f653b03288
commit 8807787b10
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ if [ -z $BITS ]; then
exit exit
fi 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 fi
# If JAVA_HOME isn't set we'll try to figure it out # If JAVA_HOME isn't set we'll try to figure it out

View File

@ -45,13 +45,13 @@ if [ -z $BITS ]; then
exit exit
fi 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 fi
if [ -z $CC ]; then if [ -z $CC ]; then
export CC="gcc" 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 fi
@ -64,7 +64,7 @@ elif [ $BITS -eq 64 ]; then
export CFLAGS="-m64 -mtune=generic" export CFLAGS="-m64 -mtune=generic"
export LDFLAGS="-m64" export LDFLAGS="-m64"
else 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 exit 1
fi fi