diff options
author | peter <peter@FreeBSD.org> | 2000-08-24 18:53:09 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-08-24 18:53:09 +0000 |
commit | 07dee18730bcd531c18c4104b58a60a2479c3699 (patch) | |
tree | c84551fe156d48e06493671dbe0e796f4de3d761 /sys/Makefile | |
parent | ef802e57c79155fa61dbf16cfa7e65faa31fd7b2 (diff) | |
download | FreeBSD-src-07dee18730bcd531c18c4104b58a60a2479c3699.zip FreeBSD-src-07dee18730bcd531c18c4104b58a60a2479c3699.tar.gz |
I should know better than to touch this without testing a 'make release'
but ${MACHINE_ARCH} should be ${MACHINE} here. pc98 has its own
GENERIC.hints file and should not be used with the i386 version.
Diffstat (limited to 'sys/Makefile')
-rw-r--r-- | sys/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/Makefile b/sys/Makefile index e8656b3..b0564d9 100644 --- a/sys/Makefile +++ b/sys/Makefile @@ -10,7 +10,7 @@ SUBDIR+=modules afterdistribute: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ - ${.CURDIR}/${MACHINE_ARCH}/conf/GENERIC.hints \ + ${.CURDIR}/${MACHINE}/conf/GENERIC.hints \ ${DESTDIR}/boot/device.hints HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh` |