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:
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
|
@ -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})
|
||||
|
|
|
@ -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})
|
||||
|
|
|
@ -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})
|
||||
|
|
Loading…
Reference in a new issue