diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-16 21:41:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-02-16 21:41:38 +0000 |
commit | d7574bd8c22ac4b32f72702b9a61645f3412d75e (patch) | |
tree | 679f5acc322e41662e61ca579e9d1ed87d03430a /app | |
parent | 0288f802b4eeda97d132bbf210d3d5ed03111827 (diff) |
Disable a few more binaries on m88k due to static linking.
Diffstat (limited to 'app')
-rw-r--r-- | app/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Makefile b/app/Makefile index c1ca85ee8..e0d86a1cf 100644 --- a/app/Makefile +++ b/app/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2007/11/24 17:07:52 matthieu Exp $ +# $OpenBSD: Makefile,v 1.13 2008/02/16 21:41:37 miod Exp $ SUBDIR= bdftopcf mkfontscale mkfontdir \ appres beforelight bitmap editres fonttosfnt fslsfonts \ @@ -16,12 +16,12 @@ SUBDIR= bdftopcf mkfontscale mkfontdir \ xwud # Font server doesn't link on architectures with static only libraries -.if ${MACHINE} != landisk && ${MACHINE} != "vax" +.if ${MACHINE} != landisk && ${MACHINE} != "vax" && ${MACHINE_ARCH} != "m88k" SUBDIR += xfs .endif # GL -.if ${MACHINE} != "sgi" && ${MACHINE} != "vax" +.if ${MACHINE} != "sgi" && ${MACHINE} != "vax" && ${MACHINE_ARCH} != "m88k" SUBDIR += xdriinfo glxgears glxinfo .endif |