Only check things out of the cvs repository during a build unless they don't
already exist. Basically, assume that any updating from the repository has been done before the build.
This commit is contained in:
parent
d592200d0f
commit
c631979f12
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=621
3 changed files with 12 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.mk,v 1.6 1996-10-06 00:08:08 jfieber Exp $
|
||||
# $Id: web.mk,v 1.7 1996-10-24 23:33:43 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -137,7 +137,9 @@ orphans:
|
|||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
if [ ! -e $$i ]; then \
|
||||
cvs co -P $$i; \
|
||||
fi \
|
||||
done
|
||||
.endif
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.mk,v 1.6 1996-10-06 00:08:08 jfieber Exp $
|
||||
# $Id: web.mk,v 1.7 1996-10-24 23:33:43 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -137,7 +137,9 @@ orphans:
|
|||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
if [ ! -e $$i ]; then \
|
||||
cvs co -P $$i; \
|
||||
fi \
|
||||
done
|
||||
.endif
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $Id: web.site.mk,v 1.6 1996-10-06 00:08:08 jfieber Exp $
|
||||
# $Id: web.site.mk,v 1.7 1996-10-24 23:33:43 jfieber Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -137,7 +137,9 @@ orphans:
|
|||
cvsdir:
|
||||
.if defined(CVSDIR) && !empty(CVSDIR)
|
||||
for i in ${CVSDIR}; do \
|
||||
cvs co -P $$i; \
|
||||
if [ ! -e $$i ]; then \
|
||||
cvs co -P $$i; \
|
||||
fi \
|
||||
done
|
||||
.endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue