Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/rescue Don't build this on mipseb or mipsel, as crunchgen(1)...



details:   https://anonhg.NetBSD.org/src/rev/2cdd0b66b54a
branches:  trunk
changeset: 537598:2cdd0b66b54a
user:      lukem <lukem%NetBSD.org@localhost>
date:      Thu Oct 03 01:11:37 2002 +0000

description:
Don't build this on mipseb or mipsel, as crunchgen(1) doesn't work correctly
on those, no fix has been forthcoming, and users are getting antsy.

This allows "make build" to complete; "make release" will still fail in the
sets generation.  Maybe *that* will inspire a MIPS/toolchain guru to fix
crunchgen(1)...

diffstat:

 rescue/Makefile |  11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diffs (28 lines):

diff -r 0a686325b7e2 -r 2cdd0b66b54a rescue/Makefile
--- a/rescue/Makefile   Thu Oct 03 01:09:21 2002 +0000
+++ b/rescue/Makefile   Thu Oct 03 01:11:37 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.2 2002/08/23 03:25:21 lukem Exp $
+#      $NetBSD: Makefile,v 1.3 2002/10/03 01:11:37 lukem Exp $
 
 .include <bsd.own.mk>
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -29,9 +29,18 @@
 
 .include "${DISTRIBDIR}/common/Makefile.crunch"
 
+.if ${MACHINE_ARCH} == "mipseb" || ${MACHINE_ARCH} == "mipsel"         # {
+
+realall install:
+       @echo "WARNING: src/rescue not built on ${MACHINE_ARCH} due to broken crunchgen"
+
+.else                                                                  # } {
+
 realall: ${CRUNCHBIN}
 
 install: ${CRUNCHBIN}
        ${PARSELIST} -v mode=install ${LISTS} | ${MAKE} -f - install
 
+.endif                                                                 # }
+
 .include <bsd.prog.mk>



Home | Main Index | Thread Index | Old Index