I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 8807787b authored by zzz's avatar zzz
Browse files

remove alert character output from build script printfs

parent f653b032
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ if [ -z $BITS ]; then ...@@ -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
......
...@@ -45,13 +45,13 @@ if [ -z $BITS ]; then ...@@ -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 ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment