diff options
author | hira <hira@pkgsrc.org> | 2005-04-15 16:38:07 +0000 |
---|---|---|
committer | hira <hira@pkgsrc.org> | 2005-04-15 16:38:07 +0000 |
commit | 2c0351f03646c26d383f01fb86ed890cce351000 (patch) | |
tree | bf94313b8d6e299e6a3fc3310fdbdd4091c8969c /meta-pkgs | |
parent | 51144b70c1b9094c82c9c9def310e2998ce9465c (diff) | |
download | pkgsrc-2c0351f03646c26d383f01fb86ed890cce351000.tar.gz |
Simplify comparison.
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 ' |