X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=docs%2Fcontrib%2Fbuild_nmh;h=344815db65d113ddce68dd6c8288d7b28015d16c;hb=5dd60d56dddeb759395a09d4cf725bcc81cdca85;hp=4405005f19c0a52480a11defb21d77ad6a18c0da;hpb=0a94d4c33a354667aada700e136beb235a9e0a90;p=mmh diff --git a/docs/contrib/build_nmh b/docs/contrib/build_nmh index 4405005..344815d 100755 --- a/docs/contrib/build_nmh +++ b/docs/contrib/build_nmh @@ -110,7 +110,9 @@ if [ $# -gt 0 ]; then fi #### Check to see that we're in a nmh source directory. -if ! grep 'the authors of nmh' COPYRIGHT >/dev/null; then +if grep 'the authors of nmh' COPYRIGHT >/dev/null; then + : +else echo "$0: not in nmh source directory" exit 1 fi @@ -205,7 +207,9 @@ if [ $yes -eq 0 ]; then read mts [ "$mts" ] && config_mts="$mts" - if [ ! "$mts" -o "$mts" = smtp ]; then + if [ "$mts" -o "$mts" = smtp ]; then + : + else printf 'SMTP server(s), space separated [%s]: ' $config_smtpservers read response servers=`echo $response | sed -e 's/ /\\\ /g'` @@ -296,7 +300,7 @@ if [ $status -eq 0 ]; then if [ $status -eq 0 ]; then [ $verbose -ge 1 ] && echo testing . . . - checkoutput=`make $check SETGID_MAIL= 2>>$logfile` + checkoutput=`make $check 2>>$logfile` status=$? tests_summary=`echo "$checkoutput" | grep tests` @@ -324,7 +328,8 @@ if [ $status -eq 0 ]; then fi fi -grep -E 'Error|warn' $logfile +grep 'Error' $logfile +grep 'warn' $logfile [ $status -ne 0 ] && echo build failed! [ $status -eq 0 -a $verbose -ge 1 ] && echo build completed successfully