diff options
author | Tim Rice <tim@multitalents.net> | 2002-11-22 22:29:01 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2002-11-22 22:29:01 +0100 |
commit | 1c9e688548a0f47fcfe41de43625f5b8a7d500dd (patch) | |
tree | d7726661187fd59e483c810112873d7bdfff7c0d /configure.ac | |
parent | [configure.ac] remove unused variables no_libsocket and no_libnsl (diff) | |
download | openssh-1c9e688548a0f47fcfe41de43625f5b8a7d500dd.tar.xz openssh-1c9e688548a0f47fcfe41de43625f5b8a7d500dd.zip |
[configure.ac] fix STDPATH test for IRIX. First reported by advax@triumf.ca.
This type of solution tested by <herb@sgi.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 0736e41ab..e96a0721d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.92 2002/11/13 23:55:57 tim Exp $ +# $Id: configure.ac,v 1.93 2002/11/22 21:29:03 tim Exp $ AC_INIT AC_CONFIG_SRCDIR([ssh.c]) @@ -2060,7 +2060,11 @@ Edit /etc/login.conf instead.]) # include <paths.h> #endif #ifndef _PATH_STDPATH -# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" +# ifdef _PATH_USERPATH /* Irix */ +# define _PATH_STDPATH _PATH_USERPATH +# else +# define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" +# endif #endif #include <sys/types.h> #include <sys/stat.h> |