1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-06 13:09:50 +00:00

Use ${MACHINE_ARCH} instead of ${MACHINE} to support pc98.

This commit is contained in:
Yoshihiro Takahashi 2001-02-10 13:11:02 +00:00
parent 69115ebe90
commit 96cd764ed3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72316

View File

@ -16,10 +16,10 @@ SUBDIR+= compat21
SUBDIR+= compat22 SUBDIR+= compat22
.endif .endif
.if defined(COMPAT3X) || defined(RELEASEDIR) .if defined(COMPAT3X) || defined(RELEASEDIR)
SUBDIR+= compat3x.${MACHINE} SUBDIR+= compat3x.${MACHINE_ARCH}
.endif .endif
.if defined(COMPAT4X) || defined(RELEASEDIR) .if defined(COMPAT4X) || defined(RELEASEDIR)
SUBDIR+= compat4x.${MACHINE} SUBDIR+= compat4x.${MACHINE_ARCH}
.endif .endif
.include <bsd.subdir.mk> .include <bsd.subdir.mk>