From 51d9ddc63578d6430f5062f8066acef0c63b5ac2 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Mon, 27 Nov 2006 01:35:11 +0000 Subject: [PATCH] Back out half of my previous change to support parallel makes. The generated Makefile clashes with the src/bin/sh/Makefile, causing it to try to use a rule to build something it doesn't need to. --- usr.sbin/crunch/crunchgen/crunchgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr.sbin/crunch/crunchgen/crunchgen.c b/usr.sbin/crunch/crunchgen/crunchgen.c index fc75a6a12d82..71f6d5b277d5 100644 --- a/usr.sbin/crunch/crunchgen/crunchgen.c +++ b/usr.sbin/crunch/crunchgen/crunchgen.c @@ -1037,7 +1037,9 @@ void prog_makefile_rules(FILE *outmk, prog_t *p) fprintf(outmk, "%s_OPTS+=", p->ident); output_strlst(outmk, p->buildopts); } +#if 0 fprintf(outmk, "$(%s_OBJPATHS): %s_make\n\n", p->ident, p->ident); +#endif fprintf(outmk, "%s_make:\n", p->ident); fprintf(outmk, "\t(cd $(%s_SRCDIR) && ", p->ident); if (makeobj)