diff options
author | Waldemar Brodkorb <w.brodkorb@deubert.it> | 2016-02-26 06:49:48 +0100 |
---|---|---|
committer | Waldemar Brodkorb <w.brodkorb@deubert.it> | 2016-02-27 12:35:37 +0100 |
commit | 1301c3e02a1c652388abb80c2c95a3fe68bebc51 (patch) | |
tree | 9f1c3aa58b6230fc5920e25d28f856949e6730f7 | |
parent | 1e3eea60afa139ddc00295ee7aae65c46e077001 (diff) |
add new lines for package dependent requirement messages
-rwxr-xr-x | scripts/prereq.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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 |