diff options
author | Alexander Langer <alex@FreeBSD.org> | 2001-03-23 14:26:40 +0000 |
---|---|---|
committer | Alexander Langer <alex@FreeBSD.org> | 2001-03-23 14:26:40 +0000 |
commit | ee56e35fb82a03c0f4afdf9d654f7054e73d93bd (patch) | |
tree | c9a4daf280d9ca064b3dd5ae99a75c8d3f5df913 /misc/libh | |
parent | Make this actually fetchable (and BROKEN for systems < 4.2-RELEASE). (diff) |
Fix a couple of small nits.
Submitted by: nra (maintainer)
Notes
Notes:
svn path=/head/; revision=40272
Diffstat (limited to 'misc/libh')
-rw-r--r-- | misc/libh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/libh/Makefile b/misc/libh/Makefile index f37770fcb71d..f06cb95e3ecb 100644 --- a/misc/libh/Makefile +++ b/misc/libh/Makefile @@ -28,7 +28,7 @@ DISTFILES!= ${CAT} ${FILESDIR}/distfiles CVS_CMD?= cvs -z3 # arbitrary date for now. -CVS_DATE= Thu Mar 10 13:00:00 GMT 2001 +CVS_DATE= Sat Mar 10 13:00:00 GMT 2001 CVS_DATE_!= ${ECHO} -n "${CVS_DATE}" | ${SED} 's/[ \t:]/_/g' CVS_SITES?= :pserver:anonymous@usw4.freebsd.org:/home/libh/cvs DIRNAME= ${PORTNAME}-${PORTVERSION} @@ -73,7 +73,7 @@ do-fetch: ${ECHO_MSG} ">> *** Please hit enter here for the password."; \ ${CVS_CMD} -d $${CVS_SITE} login < /dev/null; \ fi ; \ - if ${CVS_CMD} -d $${CVS_SITE} co ${DISTNAME}; then \ + if ${CVS_CMD} -d $${CVS_SITE} co -D '${CVS_DATE}' ${DISTNAME}; then \ if [ "X$${CVS_LOGIN}" = "Xyes" ]; then \ ${CVS_CMD} -d $${CVS_SITE} logout < /dev/null; \ fi; \ |