From cfa626e16b2193a699f828856fa06f4606d66eb4 Mon Sep 17 00:00:00 2001 From: bfernhomberg Date: Tue, 7 Dec 2004 18:47:28 +0000 Subject: [PATCH 1/1] Display none as installation style if none has been specified (instead of an empty line). --- macros/summary.m4 | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.39.2