Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/make Revert 1.80, which somehow manages to produce d...



details:   https://anonhg.NetBSD.org/src/rev/581418500424
branches:  trunk
changeset: 756071:581418500424
user:      dholland <dholland%NetBSD.org@localhost>
date:      Tue Jul 06 03:56:59 2010 +0000

description:
Revert 1.80, which somehow manages to produce different (wrong)
behavior with -jN. Unfixes PR 43534. Need a different approach...

diffstat:

 usr.bin/make/make.c |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (34 lines):

diff -r c603ddaa1a5f -r 581418500424 usr.bin/make/make.c
--- a/usr.bin/make/make.c       Tue Jul 06 00:36:27 2010 +0000
+++ b/usr.bin/make/make.c       Tue Jul 06 03:56:59 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: make.c,v 1.80 2010/06/30 00:25:04 dholland Exp $       */
+/*     $NetBSD: make.c,v 1.81 2010/07/06 03:56:59 dholland Exp $       */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
  */
 
 #ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: make.c,v 1.80 2010/06/30 00:25:04 dholland Exp $";
+static char rcsid[] = "$NetBSD: make.c,v 1.81 2010/07/06 03:56:59 dholland Exp $";
 #else
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static char sccsid[] = "@(#)make.c     8.1 (Berkeley) 6/6/93";
 #else
-__RCSID("$NetBSD: make.c,v 1.80 2010/06/30 00:25:04 dholland Exp $");
+__RCSID("$NetBSD: make.c,v 1.81 2010/07/06 03:56:59 dholland Exp $");
 #endif
 #endif /* not lint */
 #endif
@@ -1331,7 +1331,6 @@
 
        (void)Dir_MTime(gn);
        Var_Set(TARGET, gn->path ? gn->path : gn->name, gn, 0);
-       Var_Set(PREFIX, gn->name, gn, 0);
        Lst_ForEach(gn->children, MakeUnmark, gn);
        Lst_ForEach(gn->children, MakeHandleUse, gn);
 



Home | Main Index | Thread Index | Old Index