From f1f5ecd1a9cef8995b32a644ab6d495e717882e4 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 25 Mar 2005 20:15:20 +0000 Subject: [PATCH] We must check for "${MACHINE}" and not "${MACHINE_ARCH}" of course to decide about port specific obsolete lists. --- etc/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index db3d37a79347..0f52a4213bb0 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.309 2005/03/24 20:23:55 tron Exp $ +# $NetBSD: Makefile,v 1.310 2005/03/25 20:15:20 tron Exp $ # from: @(#)Makefile 8.7 (Berkeley) 5/25/95 # Environment variables without default values: @@ -340,11 +340,11 @@ OBSOLETE.dir= ${.OBJDIR}/obsolete.dir OBSOLETE.files= base comp etc games man misc text .if ${MKX11} != "no" OBSOLETE.files+= xbase xcomp xfont -.if ${MACHINE_ARCH} == "amd64" || \ - ${MACHINE_ARCH} == "cats" || \ - ${MACHINE_ARCH} == "i386" || \ - ${MACHINE_ARCH} == "macppc" || \ - ${MACHINE_ARCH} == "sgimips" +.if ${MACHINE} == "amd64" || \ + ${MACHINE} == "cats" || \ + ${MACHINE} == "i386" || \ + ${MACHINE} == "macppc" || \ + ${MACHINE} == "sgimips" OBSOLETE.files+= xserver .endif .endif