diff options
author | joe <joe@FreeBSD.org> | 2000-08-13 12:38:41 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2000-08-13 12:38:41 +0000 |
commit | 3994d736d6eca43b876cae9dd884c30f996b4f25 (patch) | |
tree | fd9f2bd65541b415f924f166dbf2736e6dad8dc3 /Makefile | |
parent | 6b5d9e7afc27bfc00f78e3d45eb6526293b55411 (diff) | |
download | FreeBSD-ports-3994d736d6eca43b876cae9dd884c30f996b4f25.zip FreeBSD-ports-3994d736d6eca43b876cae9dd884c30f996b4f25.tar.gz |
Use the SUPHOST in the 'make update' if it's defined.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -83,6 +83,9 @@ parallel: ${.CURDIR}/INDEX @sed -e 's/|/.tgz|/' ${.CURDIR}/INDEX | awk -F '|' '{me=$$1; here=$$2; bdep=$$8; rdep=$$9; split(here, tmp, "/"); if (bdep != "") { gsub("$$", ".tgz", bdep); gsub(" ", ".tgz ", bdep); } if (rdep != "") { gsub("$$", ".tgz", rdep); gsub(" ", ".tgz ", rdep); } print tmp[4] "-all:: " me; print me ": " bdep " " rdep; printf("\t@/a/asami/portbuild/scripts/pdispatch ${branch} /a/asami/portbuild/scripts/portbuild %s %s", me, here); if (bdep != "") printf(" %s", bdep); if (rdep != "") printf(" %s", rdep); printf("\n")}' CVS?= cvs +.if defined(SUPHOST) +SUPFLAGS+= -h ${SUPHOST} +.endif update: .if defined(SUP_UPDATE) .if !defined(PORTSSUPFILE) |