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): unindent SuffFindNormalDepsUnknown



details:   https://anonhg.NetBSD.org/src/rev/dca67fe7f6e2
branches:  trunk
changeset: 941437:dca67fe7f6e2
user:      rillig <rillig%NetBSD.org@localhost>
date:      Wed Oct 21 06:36:10 2020 +0000

description:
make(1): unindent SuffFindNormalDepsUnknown

diffstat:

 usr.bin/make/suff.c |  56 ++++++++++++++++++++++++++--------------------------
 1 files changed, 28 insertions(+), 28 deletions(-)

diffs (83 lines):

diff -r 6c45b09c9e73 -r dca67fe7f6e2 usr.bin/make/suff.c
--- a/usr.bin/make/suff.c       Wed Oct 21 06:34:26 2020 +0000
+++ b/usr.bin/make/suff.c       Wed Oct 21 06:36:10 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: suff.c,v 1.203 2020/10/21 06:34:26 rillig Exp $        */
+/*     $NetBSD: suff.c,v 1.204 2020/10/21 06:36:10 rillig Exp $        */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -129,7 +129,7 @@
 #include "dir.h"
 
 /*     "@(#)suff.c     8.4 (Berkeley) 3/21/94" */
-MAKE_RCSID("$NetBSD: suff.c,v 1.203 2020/10/21 06:34:26 rillig Exp $");
+MAKE_RCSID("$NetBSD: suff.c,v 1.204 2020/10/21 06:36:10 rillig Exp $");
 
 #define SUFF_DEBUG0(text) DEBUG0(SUFF, text)
 #define SUFF_DEBUG1(fmt, arg1) DEBUG1(SUFF, fmt, arg1)
@@ -1633,38 +1633,38 @@
 {
     Src *targ;
 
-    if (Lst_IsEmpty(targs) && suffNull != NULL) {
-       SUFF_DEBUG1("\tNo known suffix on %s. Using .NULL suffix\n",
-                   gn->name);
+    if (!Lst_IsEmpty(targs) || suffNull == NULL)
+        return;
+
+    SUFF_DEBUG1("\tNo known suffix on %s. Using .NULL suffix\n", gn->name);
 
-       targ = bmake_malloc(sizeof *targ);
-       targ->file = bmake_strdup(gn->name);
-       targ->suff = suffNull;
-       targ->suff->refCount++;
-       targ->node = gn;
-       targ->parent = NULL;
-       targ->children = 0;
-       targ->pref = bmake_strdup(sopref);
+    targ = bmake_malloc(sizeof *targ);
+    targ->file = bmake_strdup(gn->name);
+    targ->suff = suffNull;
+    targ->suff->refCount++;
+    targ->node = gn;
+    targ->parent = NULL;
+    targ->children = 0;
+    targ->pref = bmake_strdup(sopref);
 #ifdef DEBUG_SRC
-       targ->cp = Lst_New();
+    targ->cp = Lst_New();
 #endif
 
-       /*
-        * Only use the default suffix rules if we don't have commands
-        * defined for this gnode; traditional make programs used to
-        * not define suffix rules if the gnode had children but we
-        * don't do this anymore.
-        */
-       if (Lst_IsEmpty(gn->commands))
-           SuffAddLevel(srcs, targ);
-       else {
-           SUFF_DEBUG0("not ");
-       }
+    /*
+     * Only use the default suffix rules if we don't have commands
+     * defined for this gnode; traditional make programs used to
+     * not define suffix rules if the gnode had children but we
+     * don't do this anymore.
+     */
+    if (Lst_IsEmpty(gn->commands))
+       SuffAddLevel(srcs, targ);
+    else {
+       SUFF_DEBUG0("not ");
+    }
 
-       SUFF_DEBUG0("adding suffix rules\n");
+    SUFF_DEBUG0("adding suffix rules\n");
 
-       Lst_Append(targs, targ);
-    }
+    Lst_Append(targs, targ);
 }
 
 /* Locate implicit dependencies for regular targets.



Home | Main Index | Thread Index | Old Index