diff options
author | grant <grant> | 2002-08-23 07:27:54 +0000 |
---|---|---|
committer | grant <grant> | 2002-08-23 07:27:54 +0000 |
commit | 4771d4aa0e4c2dddf73f2a816b4b426b0ef1e205 (patch) | |
tree | 58a96b6b9689a2d1e62942fd6f053ffcf27cb8af | |
parent | 7996e577a253931ca3a6eb5ec8826b885bac322a (diff) | |
download | pkgsrc-4771d4aa0e4c2dddf73f2a816b4b426b0ef1e205.tar.gz |
Remove Solaris specific SSH_PID_DIR, as Solaris 8/9 do indeed have a
/var/run directory, tmpfs is mounted on /var/run by default.
/var/run does not exist by default on Solaris 7, but some daemons
appear to make use of it after it is created (eg. syslogd).
-rw-r--r-- | security/openssh/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 6620739487e..fac6d3b4682 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.86 2002/08/01 08:35:45 tron Exp $ +# $NetBSD: Makefile,v 1.87 2002/08/23 07:27:54 grant Exp $ DISTNAME= openssh-3.4p1 PKGNAME= openssh-3.4.0.1 @@ -35,11 +35,6 @@ PLIST_SRC= # empty MESSAGE_SRC= ${.CURDIR}/MESSAGE SSH_PID_DIR= /var/run # default directory for PID files -SSH_PID_DIR.SunOS= /etc # Solaris doesn't have a /var/run - -.if defined(SSH_PID_DIR.${OPSYS}) -SSH_PID_DIR= ${SSH_PID_DIR.${OPSYS}} -.endif PKG_SYSCONFSUBDIR= ssh MANDIR= man |