Language tweaks.

git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@438 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2011-09-13 12:29:25 +00:00
parent 16844f8456
commit 3f2d2b26cd

View file

@ -64,13 +64,13 @@ AC_ARG_WITH([doc],
AM_CONDITIONAL([WITH_DOC], [test x"$with_doc" = x"yes"])
AC_ARG_WITH([pam-unix],
AC_HELP_STRING([--with-pam-unix], [compile example version of pam_unix.so]),
AC_HELP_STRING([--with-pam-unix], [compile sample pam_unix(8) implementation]),
[],
[with_pam_unix=no])
AM_CONDITIONAL([WITH_PAM_UNIX], [test x"$with_pam_unix" = x"yes"])
AC_ARG_WITH(su,
AC_HELP_STRING([--with-su], [compile example version of su(1)]),
AC_HELP_STRING([--with-su], [compile sample su(1) implementation]),
[],
[with_su=no])
AM_CONDITIONAL([WITH_SU], [test x"$with_su" = x"yes"])