From 1301c3e02a1c652388abb80c2c95a3fe68bebc51 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 26 Feb 2016 06:49:48 +0100 Subject: add new lines for package dependent requirement messages --- scripts/prereq.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/prereq.sh') diff --git a/scripts/prereq.sh b/scripts/prereq.sh index 10ab9b382..223fc3a4e 100755 --- a/scripts/prereq.sh +++ b/scripts/prereq.sh @@ -658,21 +658,21 @@ else if [ -n "$NEED_MKFONTDIR" ]; then if ! which mkfontdir >/dev/null 2>&1; then - printf "You need mkfontdir to build $NEED_MKFONTDIR" + printf "You need mkfontdir to build $NEED_MKFONTDIR \n" out=1 fi fi if [ -n "$NEED_XKBCOMP" ]; then if ! which xkbcomp >/dev/null 2>&1; then - printf "You need xkbcomp to build $NEED_XKBCOMP" + printf "You need xkbcomp to build $NEED_XKBCOMP \n" out=1 fi fi if [ -n "$NEED_JAVA" ]; then if ! which java >/dev/null 2>&1; then - printf "You need java to build $NEED_JAVA" + printf "You need java to build $NEED_JAVA \n" out=1 fi fi @@ -687,7 +687,7 @@ cat >test.c <<-'EOF' } EOF if ! $CXX -static-libstdc++ -o test test.c 2>/dev/null ; then - printf "You need static version of libstdc++ installed to build $NEED_STATIC_LIBSTDCXX" + printf "You need static version of libstdc++ installed to build $NEED_STATIC_LIBSTDCXX \n" out=1 rm test test.c 2>/dev/null fi -- cgit v1.2.3