We must check for "${MACHINE}" and not "${MACHINE_ARCH}" of course to
decide about port specific obsolete lists.
This commit is contained in:
parent
3118a7b178
commit
f1f5ecd1a9
12
etc/Makefile
12
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
|
# from: @(#)Makefile 8.7 (Berkeley) 5/25/95
|
||||||
|
|
||||||
# Environment variables without default values:
|
# Environment variables without default values:
|
||||||
|
@ -340,11 +340,11 @@ OBSOLETE.dir= ${.OBJDIR}/obsolete.dir
|
||||||
OBSOLETE.files= base comp etc games man misc text
|
OBSOLETE.files= base comp etc games man misc text
|
||||||
.if ${MKX11} != "no"
|
.if ${MKX11} != "no"
|
||||||
OBSOLETE.files+= xbase xcomp xfont
|
OBSOLETE.files+= xbase xcomp xfont
|
||||||
.if ${MACHINE_ARCH} == "amd64" || \
|
.if ${MACHINE} == "amd64" || \
|
||||||
${MACHINE_ARCH} == "cats" || \
|
${MACHINE} == "cats" || \
|
||||||
${MACHINE_ARCH} == "i386" || \
|
${MACHINE} == "i386" || \
|
||||||
${MACHINE_ARCH} == "macppc" || \
|
${MACHINE} == "macppc" || \
|
||||||
${MACHINE_ARCH} == "sgimips"
|
${MACHINE} == "sgimips"
|
||||||
OBSOLETE.files+= xserver
|
OBSOLETE.files+= xserver
|
||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
Loading…
Reference in New Issue