@@ -1,6 +1,6 @@ me=$0 -say() { echo >&2 "($me) $1"; } +say() { echo >&2 "($me) $1"; } has() { which $1 >/dev/null 2>&1; return $?; } check() { var=$1 test "${!var}" == "" || return 0 @@ -8,14 +8,14 @@ exit 1 } test "$out" = "" && { - say "\$out environment variable must be set to your build directory - are you running this script by hand? run ./build.sh in the root directory instead!" + say "\$out environment variable must be set to your build directory - are you running this script by hand? run ./build.sh in the root directory instead!" exit 2 } reqpack() { if ! has "$1"; then - say "to $2 for libk, install the $1 package and try again" + say "to $2 for libk, install the $1 package and try again" exit 3 fi }