Avoid an unnecessary secondary 'svn co' call in the 'make install'

target.  This should only be executed during 'make all', the latter
causes unnecessary filesystem pollution.

Sponsored by:	Rubicon Communications, LLC (netgate.com)
This commit is contained in:
Glen Barber 2020-12-05 00:57:59 +00:00
parent 74ea351cb4
commit ebe241d93c
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=54732
3 changed files with 3 additions and 3 deletions
en_US.ISO8859-1/htdocs/releases
12.0R/hardware
12.1R/hardware
12.2R/hardware

View file

@ -21,7 +21,7 @@ FORMATS?= html txt
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
.if ${.TARGET:M${DOC}.html}
.if ${.TARGET:M${DOC}.html} && !make(install)
MAN4TMP!= ${MKTEMP} -d ${.CURDIR}/svn.XXXXXXXX
MAN4DIR= ${MAN4TMP}
.if exists(${MAN4DIR})

View file

@ -21,7 +21,7 @@ FORMATS?= html txt
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
.if ${.TARGET:M${DOC}.html}
.if ${.TARGET:M${DOC}.html} && !make(install)
MAN4TMP!= ${MKTEMP} -d ${.CURDIR}/svn.XXXXXXXX
MAN4DIR= ${MAN4TMP}
.if exists(${MAN4DIR})

View file

@ -21,7 +21,7 @@ FORMATS?= html txt
INSTALL_COMPRESSED?= gz
INSTALL_ONLY_COMPRESSED=
.if ${.TARGET:M${DOC}.html}
.if ${.TARGET:M${DOC}.html} && !make(install)
MAN4TMP!= ${MKTEMP} -d ${.CURDIR}/svn.XXXXXXXX
MAN4DIR= ${MAN4TMP}
.if exists(${MAN4DIR})