diff options
author | green <green@FreeBSD.org> | 1999-12-08 12:06:38 +0800 |
---|---|---|
committer | green <green@FreeBSD.org> | 1999-12-08 12:06:38 +0800 |
commit | 4dba2c451ad23bcc217f0f92c31c54e6f287fbc6 (patch) | |
tree | d6c62acc5ea469605d12c3161134e33e908e0854 /security/openssh/Makefile | |
parent | 90cb431b27de7bdd627cc948f07b4065216fcffd (diff) | |
download | freebsd-ports-gnome-4dba2c451ad23bcc217f0f92c31c54e6f287fbc6.tar.gz freebsd-ports-gnome-4dba2c451ad23bcc217f0f92c31c54e6f287fbc6.tar.zst freebsd-ports-gnome-4dba2c451ad23bcc217f0f92c31c54e6f287fbc6.zip |
I've cleaned up ${CVS_DATE} usage a bit (keep spaces correctly), and
updated to today's snapshot of OpenSSH.
Various updates from the latest ${CVS_DATE}, and requisite patch
changes, are the "big new thing". Nothing major has changed; the
biggest ones would be using atomicio() in a lot of places and a
fix for a SIGHUP not updating sshd(8)'s configuration until the
next connection.
Diffstat (limited to 'security/openssh/Makefile')
-rw-r--r-- | security/openssh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index a30fbd5d07f2..6f01237ee04c 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -23,9 +23,9 @@ CAT?= /bin/cat DISTFILES!= ${CAT} ${FILESDIR}/distfiles CVS_CMD?= cvs -z3 -CVS_DATE= Sun Nov 28 16:31:22 EST 1999 +CVS_DATE= Tue Dec 7 22:46:23 EST 1999 SED?= /usr/bin/sed -CVS_DATE_!= ${ECHO} -n ${CVS_DATE} | ${SED} 's/[ \t:]/_/g' +CVS_DATE_!= ${ECHO} -n "${CVS_DATE}" | ${SED} 's/[ \t:]/_/g' CVS_SITES= anoncvs@anoncvs1.ca.openbsd.org:/cvs \ :pserver:anoncvs@anoncvs1.usa.openbsd.org:/cvs CRYPTOLIBS= -L${PREFIX}/lib -lcrypto @@ -62,7 +62,7 @@ do-fetch: cd ${DISTDIR}; \ ${TAR} xfz ${PKGNAME}.${CVS_DATE_}.tar.gz \ ${DISTFILES}; \ - ${ECHO} -n ${CVS_DATE} > ${STAMPFILE}; \ + ${ECHO} -n "${CVS_DATE}" > ${STAMPFILE}; \ exit; \ fi; \ unset CVS_RSH CVS_SERVER || ${TRUE}; \ |