From: bfernhomberg Date: Tue, 7 Dec 2004 18:47:28 +0000 (+0000) Subject: Display none as installation style if none has been specified (instead of an empty... X-Git-Tag: netatalk-2-0-2~11 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=commitdiff_plain;h=cfa626e16b2193a699f828856fa06f4606d66eb4 Display none as installation style if none has been specified (instead of an empty line). --- diff --git a/macros/summary.m4 b/macros/summary.m4 index 4713e710..7d109df6 100644 --- a/macros/summary.m4 +++ b/macros/summary.m4 @@ -1,11 +1,15 @@ -dnl $Id: summary.m4,v 1.1.2.5 2004-06-24 00:43:58 bfernhomberg Exp $ +dnl $Id: summary.m4,v 1.1.2.5.2.1 2004-12-07 18:47:28 bfernhomberg Exp $ dnl Autoconf macros, display configure summary AC_DEFUN([AC_NETATALK_CONFIG_SUMMARY], [ AC_MSG_RESULT([Configure summary:]) AC_MSG_RESULT([ Install style:]) - AC_MSG_RESULT([ $sysv_style]) + if test "x$sysv_style" != "x"; then + AC_MSG_RESULT([ $sysv_style]) + else + AC_MSG_RESULT([ none]) + fi AC_MSG_RESULT([ AFP:]) AC_MSG_RESULT([ AFP 3.x calls activated: $afp3]) if test "x$afp3" = "xyes"; then