From: Tomi Ollila Date: Tue, 20 Mar 2012 22:16:50 +0000 (+0200) Subject: configure: add empty line after each missing component message X-Git-Tag: 0.13_rc1~98 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/notmuch.git/commitdiff_plain/e8138c522b386e4e7f6d3c57e62e6a185aaad336 configure: add empty line after each missing component message Currently whenever message about missing GMime, Glib or talloc is printed the message is 2 lines, component info and its http location in next line. In the future the amount of lines will vary. To ease reading in these cases newline is added after each message. --- diff --git a/configure b/configure index 8cf6f2d7..393f859b 100755 --- a/configure +++ b/configure @@ -404,17 +404,19 @@ EOF if [ $have_gmime -eq 0 ]; then echo " GMime 2.4 library (including development files such as headers)" echo " http://spruce.sourceforge.net/gmime/" + echo fi if [ $have_glib -eq 0 ]; then echo " Glib library >= 2.22 (including development files such as headers)" echo " http://ftp.gnome.org/pub/gnome/sources/glib/" + echo fi if [ $have_talloc -eq 0 ]; then echo " The talloc library (including development files such as headers)" echo " http://talloc.samba.org/" + echo fi cat <