diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-28 00:24:02 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-08-28 00:24:02 +0000 |
commit | 25c65f0f21e7795a4262c22d0ee34aaa669e7a3d (patch) | |
tree | 31f62eaebf9fa2d2c11be670fa9e46a971ae7f7b /lib | |
parent | 8107efd6251ab64fe10cd98852f23703a6a50288 (diff) |
For the moment libcurses++ breaks on mips
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index c82bc108fd8..ade8edb5eec 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,10 +1,15 @@ -# $OpenBSD: Makefile,v 1.35 1999/05/23 22:13:22 angelos Exp $ +# $OpenBSD: Makefile,v 1.36 1999/08/28 00:24:01 niklas Exp $ # $NetBSD: Makefile,v 1.20.4.1 1996/06/14 17:22:38 cgd Exp $ SUBDIR= csu libarch libc libc_r libcom_err libcompat libcurses libdes libedit \ libform libkeynote libl libm libmenu libocurses libossaudio libpanel \ libpcap libresolv librpcsvc libskey libssl libtelnet libutil libwrap \ - liby libz libcurses++ + liby libz + +# XXX Temporary until libcurses++ builds on mips again +.if ${MACHINE_ARCH} != "mips" +SUBDIR+= libcurses++ +.endif # XXX Temporarily until i386 and pmax are able to use libkvm .if make(obj) |