]> granicus.if.org Git - sudo/commitdiff
Add missing square brackets in configure option descriptions.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 16 Dec 2015 21:57:37 +0000 (14:57 -0700)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 16 Dec 2015 21:57:37 +0000 (14:57 -0700)
configure
configure.ac

index 23ff3e2fc8953bc5e8a610730d845a0bffb06a12..8e1d625685d994e3a0911f0571653f96376423c7 100755 (executable)
--- a/configure
+++ b/configure
@@ -1647,7 +1647,7 @@ Optional Packages:
   --with-devel            add development options
   --with-CC               C compiler to use
   --with-rpath            deprecated, use --disable-rpath
-  --with-blibpath=PATH    deprecated
+  --with-blibpath[=PATH]  deprecated
   --with-bsm-audit        enable BSM audit support
   --with-linux-audit      enable Linux audit support
   --with-solaris-audit    enable Solaris audit support
@@ -1659,8 +1659,8 @@ Optional Packages:
   --with-efence           link with -lefence for malloc() debugging
   --with-csops            add CSOps standard options
   --without-passwd        don't use passwd/shadow file for authentication
-  --with-skey=DIR         enable S/Key support
-  --with-opie=DIR         enable OPIE support
+  --with-skey[=DIR]       enable S/Key support
+  --with-opie[=DIR]       enable OPIE support
   --with-long-otp-prompt  use a two line OTP (skey/opie) prompt
   --with-SecurID[=DIR]    enable SecurID support
   --with-fwtk[=DIR]       enable FWTK AuthSRV support
@@ -1744,7 +1744,7 @@ Optional Packages:
   --with-sysroot[=DIR]    Search for dependent libraries within DIR (or the
                           compiler's sysroot if not specified).
   --with-libtool=PATH     specify path to libtool
-  --with-noexec=PATH      fully qualified pathname of sudo_noexec.so
+  --with-noexec[=PATH]    fully qualified pathname of sudo_noexec.so
   --with-netsvc[=PATH]    path to netsvc.conf
   --with-pam-login        enable specific PAM session for sudo -i
 
index fdb47b5925bfa15331cec2bfa39d6ce7a868fbe7..59cf1025205cff59124f7d2ffdf6ce15415e08fa 100644 (file)
@@ -303,7 +303,7 @@ esac])
 AC_ARG_WITH(rpath, [AS_HELP_STRING([--with-rpath], [deprecated, use --disable-rpath])],
 [AC_MSG_WARN([--with-rpath deprecated, rpath is now the default])])
 
-AC_ARG_WITH(blibpath, [AS_HELP_STRING([--with-blibpath[=PATH]], [deprecated])],
+AC_ARG_WITH(blibpath, [AS_HELP_STRING([--with-blibpath[[=PATH]]], [deprecated])],
 [AC_MSG_WARN([--with-blibpath deprecated, use --with-libpath])])
 
 dnl
@@ -445,7 +445,7 @@ AC_ARG_WITH(passwd, [AS_HELP_STRING([--without-passwd], [don't use passwd/shadow
                ;;
 esac])
 
-AC_ARG_WITH(skey, [AS_HELP_STRING([--with-skey[=DIR]], [enable S/Key support ])],
+AC_ARG_WITH(skey, [AS_HELP_STRING([--with-skey[[=DIR]]], [enable S/Key support ])],
 [case $with_skey in
     no)                ;;
     *)         AC_DEFINE(HAVE_SKEY)
@@ -455,7 +455,7 @@ AC_ARG_WITH(skey, [AS_HELP_STRING([--with-skey[=DIR]], [enable S/Key support ])]
                ;;
 esac])
 
-AC_ARG_WITH(opie, [AS_HELP_STRING([--with-opie[=DIR]], [enable OPIE support ])],
+AC_ARG_WITH(opie, [AS_HELP_STRING([--with-opie[[=DIR]]], [enable OPIE support ])],
 [case $with_opie in
     no)                ;;
     *)         AC_DEFINE(HAVE_OPIE)
@@ -1594,7 +1594,7 @@ LIBDL="$lt_cv_dlopen_libs"
 SHLIB_ENABLE="$enable_dlopen"
 
 AC_MSG_CHECKING(path to sudo_noexec.so)
-AC_ARG_WITH(noexec, [AS_HELP_STRING([--with-noexec[=PATH]], [fully qualified pathname of sudo_noexec.so])],
+AC_ARG_WITH(noexec, [AS_HELP_STRING([--with-noexec[[=PATH]]], [fully qualified pathname of sudo_noexec.so])],
 [case $with_noexec in
     yes)       with_noexec="$libexecdir/sudo/sudo_noexec.so"
                ;;