From 9c941fe441da210762824b0d4fb76b03f866248c Mon Sep 17 00:00:00 2001 From: jbasney Date: Sat, 17 Feb 2007 18:05:33 +0000 Subject: [PATCH] fix check for _PATH_BSHELL, etc., from openssh patch --- openssh/configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openssh/configure.ac b/openssh/configure.ac index 7ba06dd..75ae346 100644 --- a/openssh/configure.ac +++ b/openssh/configure.ac @@ -3531,19 +3531,19 @@ fi AC_CHECK_DECL(_PATH_BSHELL, , AC_DEFINE_UNQUOTED(_PATH_BSHELL, "/bin/sh", - [Define to your C shell if not defined in paths.h]) + [Define to your C shell if not defined in paths.h]), [ #include ] ) AC_CHECK_DECL(_PATH_CSHELL, , AC_DEFINE_UNQUOTED(_PATH_CSHELL, "/bin/csh", - [Define to your Bourne shell if not defined in paths.h]) + [Define to your Bourne shell if not defined in paths.h]), [ #include ] ) AC_CHECK_DECL(_PATH_SHELLS, , AC_DEFINE_UNQUOTED(_PATH_BSHELL, "/etc/shells", - [Define to your shells file if not defined in paths.h]) + [Define to your shells file if not defined in paths.h]), [ #include ] ) -- 2.45.1