summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorsheldonh <sheldonh@FreeBSD.org>2000-08-07 14:35:49 +0000
committersheldonh <sheldonh@FreeBSD.org>2000-08-07 14:35:49 +0000
commit8fd46ab4554b7526d9001710a3297460c0bce9f8 (patch)
tree9140f98b1877d2695e2447e88058770e98764c23 /Makefile.inc1
parent12eac35afe3b9e8daf6f71cc825340a73d5bebf7 (diff)
downloadFreeBSD-src-8fd46ab4554b7526d9001710a3297460c0bce9f8.zip
FreeBSD-src-8fd46ab4554b7526d9001710a3297460c0bce9f8.tar.gz
Make the update target consistent; both ports and doc are updated
if their SUPFILE variables are defined _and_ NO_PORTSUPDATE and NO_DOCUPDATE respectively are not defined. Previously, only ports was updated and there was no way to prevent this without undefining its SUPFILE variable. PR: 17514 Reported by: Udo Erdelhoff <ue@nathan.ruhr.de>
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc17
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index a9ecb86..752bb63 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -16,6 +16,8 @@
# -DNO_FORTRAN do not build g77 and related libraries.
# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
+# -DNO_PORTSUPDATE do not update ports in ${MAKE} update
+# -DNO_DOCUPDATE do not update doc in ${MAKE} update
# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
#
@@ -438,9 +440,12 @@ update:
.if defined(SUPFILE2)
@${SUP} ${SUPFLAGS} ${SUPFILE2}
.endif
-.if defined(PORTSSUPFILE)
+.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
.endif
+.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
+ @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
+.endif
.endif
.if defined(CVS_UPDATE)
@echo "--------------------------------------------------------------"
OpenPOWER on IntegriCloud