--- parser3/buildall 2017/05/22 16:57:27 1.22 +++ parser3/buildall 2017/05/25 12:26:46 1.23 @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: buildall,v 1.22 2017/05/22 16:57:27 moko Exp $ +# $Id: buildall,v 1.23 2017/05/25 12:26:46 moko Exp $ install_directory=$HOME/parser3install sendmail_command="/usr/sbin/sendmail -i -t -f postmaster" @@ -18,25 +18,25 @@ options="$options --with-gc=$project_dir options="$options --with-pcre=$project_dir/pcre" #options="$options --disable-stringstream" -echo "Building statically linked parser3\c" +echo -n "Building statically linked parser3" for PARAM in "$@"; do case "$PARAM" in "--without-xml") - echo ", without xml\c" + echo -n ", without xml" build_xml="" ;; "--with-apache") - echo ", with apache module\c" + echo -n ", with apache module" options="$options --with-apache" build_apache="yes" ;; "--with-mailreceive") - echo ", with mail receiving\c" + echo -n ", with mail receiving" options="$options --with-mailreceive=$project_dir/gnome" build_gmime="yes" ;; "--strip") - echo ", without debug information\c" + echo -n ", without debug information" build_stripped="yes" ;; "--help")