[sheepdog] [PATCH] Fix formating help displayed by configure --help

Marcin Mirosław marcin at mejor.pl
Sun May 24 23:16:07 CEST 2015


Added missing colons and indents.

Signed-off-by: Marcin Mirosław <marcin at mejor.pl>
---
 configure.ac | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/configure.ac b/configure.ac
index 82cb405..297d889 100644
--- a/configure.ac
+++ b/configure.ac
@@ -207,7 +207,7 @@ AC_ARG_ENABLE([debug],
 	[ default="no" ])
 
 AC_ARG_ENABLE([assert],
-	[  --enable-assert          : enable assert. ],,
+	[  --enable-assert         : enable assert. ],,
 	[ enable_assert="yes" ],)
 
 AC_ARG_ENABLE([unittest],
@@ -240,32 +240,32 @@ AC_ARG_WITH([initddir],
 	[ INITDDIR="$sysconfdir/init.d" ])
 
 AC_ARG_ENABLE([trace],
-	[  --enable-trace           : enable trace],,
+	[  --enable-trace          : enable trace],,
 	[ enable_trace="${enable_debug}" ],)
 AM_CONDITIONAL(BUILD_TRACE, test x$enable_trace = xyes)
 
 PKG_CHECK_MODULES([fuse],[fuse], HAVE_FUSE="yes", HAVE_FUSE="no")
 AC_ARG_ENABLE([sheepfs],
-	[  --enable-sheepfs         : enable sheepfs],,
+	[  --enable-sheepfs        : enable sheepfs],,
 	[ enable_sheepfs=$HAVE_FUSE ],)
 AM_CONDITIONAL(BUILD_SHEEPFS, test x$enable_sheepfs = xyes)
 
 AC_ARG_ENABLE([http],
-	[ --enable-http : enable http request service (default no) ],,
+	[  --enable-http           : enable http request service (default no) ],,
 	[ enable_http="no" ],)
 AM_CONDITIONAL(BUILD_HTTP, test x$enable_http = xyes)
 
 AC_ARG_ENABLE([nfs],
-	[ --enable-nfs : enable nfs server service (default no) ],,
+	[  --enable-nfs            : enable nfs server service (default no) ],,
 	[ enable_nfs="no" ],)
 AM_CONDITIONAL(BUILD_NFS, test x$enable_nfs = xyes)
 
 AC_ARG_ENABLE([diskvnodes],
-	[ --enable-diskvnodes : enable disk as vnodes (default no) ],,
+	[  --enable-diskvnodes     : enable disk as vnodes (default no) ],,
 	[ enable_diskvnodes="no" ],)
 AM_CONDITIONAL(BUILD_DISKVNODES, test x$enable_diskvnodes = xyes)
 
-AC_ARG_ENABLE(systemd, AS_HELP_STRING([--enable-systemd],[enable systemd support]),enable_systemd=$enableval,enable_systemd="no")
+AC_ARG_ENABLE(systemd, AS_HELP_STRING([--enable-systemd],[: enable systemd support]),enable_systemd=$enableval,enable_systemd="no")
 
 dnl systemd detection
 if test x$enable_systemd = xno ; then
@@ -286,7 +286,7 @@ fi
 
 ##### systemd unit files
 AC_ARG_WITH([systemdsystemunitdir],
-AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
+AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [: Directory for systemd service files]),
     [],
     [
     PKG_CHECK_EXISTS([systemd],
-- 
2.3.6



More information about the sheepdog mailing list