MFtbemd: Move to using MACHINE_CPUARCH, now that it is safe.

This commit is contained in:
imp 2010-09-13 01:44:56 +00:00
parent c79019f766
commit 0f9c0441c0

View File

@ -12,12 +12,12 @@
#
#
.if ${MACHINE_ARCH} == "i386"
.if ${MACHINE_CPUARCH} == "i386"
ARCH_SUBDIR= i387
.elif ${MACHINE_ARCH} == "powerpc64"
ARCH_SUBDIR= powerpc
.else
ARCH_SUBDIR= ${MACHINE_ARCH}
ARCH_SUBDIR= ${MACHINE_CPUARCH}
.endif
.include "${ARCH_SUBDIR}/Makefile.inc"