diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2011-07-06 18:33:01 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2011-07-06 18:33:01 +0000 |
commit | e35630aff7d674584b0cb6f89406b4ac328b0bd9 (patch) | |
tree | 613ca093237b8f0d16d97a30f67a318149476ea0 /etc/Makefile | |
parent | 01287004f09da4a00b880d67b72083dcb78aa3db (diff) |
Remove support for non-microVAX, non-VAXstation, non-VXT hardware in the
VAX port. This means, 11/7xx, VAX6000 and VAX8x00 systems, as well as SBI,
CMI, BI, XMI and MASSBUS drivers.
Most of these files were not being compiled or kept in compilable state over
the years anyway.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/etc/Makefile b/etc/Makefile index 5442399f34b..e4d5e738daf 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.295 2011/04/17 21:26:38 schwarze Exp $ +# $OpenBSD: Makefile,v 1.296 2011/07/06 18:32:58 miod Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= Canada/Mountain @@ -33,8 +33,6 @@ BIN2= motd MISETS= base${OSrev}.tgz comp${OSrev}.tgz \ man${OSrev}.tgz game${OSrev}.tgz etc${OSrev}.tgz -PCS= pcs750.bin - # Use NOGZIP on architectures where the gzip'ing would take too much time # (pmax or slower :-)). This way you get only tar'ed snap files and you can # gzip them on a faster machine @@ -235,12 +233,6 @@ distribution-etc-root-var: distrib-dirs ${DESTDIR}/var/log/xferlog ${INSTALL} -c -o ${BINOWN} -g utmp -m 664 /dev/null \ ${DESTDIR}/var/run/utmp -.if ${MACHINE} == "vax" - uudecode -p etc.vax/${PCS}.uu > ${DESTDIR}/${PCS} && \ - chown ${BINOWN} ${DESTDIR}/${PCS} && \ - chgrp ${BINGRP} ${DESTDIR}/${PCS} && \ - chmod 644 ${DESTDIR}/${PCS} -.endif cd ../gnu/usr.sbin/sendmail/cf/cf && exec ${MAKE} distribution cd ../usr.sbin/ypserv/ypinit && exec ${MAKE} distribution cd ../usr.bin/ssh && exec ${MAKE} distribution |