summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgjb <gjb@c2e8774f-c49f-e111-b436-862b2bbc8956>2020-12-05 00:57:59 +0000
committergjb <gjb@c2e8774f-c49f-e111-b436-862b2bbc8956>2020-12-05 00:57:59 +0000
commitc4d8bf143320c3be1cacf527a258fe41bd56bca8 (patch)
treea41a09198ba0d442b8dff27459c47ff0ba5d25e9
parentaf7335604c2373603f2c6bd008af4d043da1778b (diff)
downloadfreebsd-doc-c4d8bf143320c3be1cacf527a258fe41bd56bca8.tar.gz
freebsd-doc-c4d8bf143320c3be1cacf527a258fe41bd56bca8.tar.bz2
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) git-svn-id: http://svn.freebsd.org/doc/head@54732 c2e8774f-c49f-e111-b436-862b2bbc8956
-rw-r--r--en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile2
-rw-r--r--en_US.ISO8859-1/htdocs/releases/12.1R/hardware/Makefile2
-rw-r--r--en_US.ISO8859-1/htdocs/releases/12.2R/hardware/Makefile2
3 files changed, 3 insertions, 3 deletions
diff --git a/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile b/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
index 5c5e8fdbbd..4a0369c8a0 100644
--- a/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
+++ b/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
@@ -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})
diff --git a/en_US.ISO8859-1/htdocs/releases/12.1R/hardware/Makefile b/en_US.ISO8859-1/htdocs/releases/12.1R/hardware/Makefile
index 5c5e8fdbbd..4a0369c8a0 100644
--- a/en_US.ISO8859-1/htdocs/releases/12.1R/hardware/Makefile
+++ b/en_US.ISO8859-1/htdocs/releases/12.1R/hardware/Makefile
@@ -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})
diff --git a/en_US.ISO8859-1/htdocs/releases/12.2R/hardware/Makefile b/en_US.ISO8859-1/htdocs/releases/12.2R/hardware/Makefile
index 5c5e8fdbbd..4a0369c8a0 100644
--- a/en_US.ISO8859-1/htdocs/releases/12.2R/hardware/Makefile
+++ b/en_US.ISO8859-1/htdocs/releases/12.2R/hardware/Makefile
@@ -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})