Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/make make(1): fix type of global variable 'create'



details:   https://anonhg.NetBSD.org/src/rev/e64a6d427e1a
branches:  trunk
changeset: 938966:e64a6d427e1a
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue Sep 22 05:12:08 2020 +0000

description:
make(1): fix type of global variable 'create'

diffstat:

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

diffs (27 lines):

diff -r e86720c8706b -r e64a6d427e1a usr.bin/make/main.c
--- a/usr.bin/make/main.c       Tue Sep 22 04:05:41 2020 +0000
+++ b/usr.bin/make/main.c       Tue Sep 22 05:12:08 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.338 2020/09/22 04:05:41 rillig Exp $        */
+/*     $NetBSD: main.c,v 1.339 2020/09/22 05:12:08 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -126,7 +126,7 @@
 #endif
 
 /*     "@(#)main.c     8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.338 2020/09/22 04:05:41 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.339 2020/09/22 05:12:08 rillig Exp $");
 #if defined(MAKE_NATIVE) && !defined(lint)
 __COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\
  The Regents of the University of California.  All rights reserved.");
@@ -136,7 +136,7 @@
 #define        DEFMAXLOCAL DEFMAXJOBS
 #endif
 
-GNodeList *            create;         /* Targets to be made */
+StringList *           create;         /* Targets to be made */
 time_t                 now;            /* Time at start of make */
 GNode                  *DEFAULT;       /* .DEFAULT node */
 Boolean                        allPrecious;    /* .PRECIOUS given on line by itself */



Home | Main Index | Thread Index | Old Index