diff options
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/xorg/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-pkgs/xorg/Makefile.common b/meta-pkgs/xorg/Makefile.common index 1101a982fcd..c753c1e53a3 100644 --- a/meta-pkgs/xorg/Makefile.common +++ b/meta-pkgs/xorg/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.27 2005/04/15 15:20:47 hira Exp $ +# $NetBSD: Makefile.common,v 1.28 2005/04/15 16:38:32 hira Exp $ # # XBUILD_DIRS is the group of directories under ${WRKSRC} that will # be built in. @@ -160,8 +160,8 @@ PLIST_SUBST+= X11ROOT_PREFIX=${X11ROOT_PREFIX} MESSAGE_SUBST+= X11ROOT=${X11ROOT} .if ${OPSYS} != "Darwin" -. if !empty(MACHINE_ARCH:Mi386) || !empty(MACHINE_ARCH:Mx86_64) || \ - !empty(MACHINE_ARCH:Msparc64) +. if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" || \ + ${MACHINE_ARCH} == "sparc64" PLIST_SUBST+= DGA= . else PLIST_SUBST+= DGA='@comment ' |