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): sort debug flags alphabetically
details: https://anonhg.NetBSD.org/src/rev/bd80cc8ba51c
branches: trunk
changeset: 978110:bd80cc8ba51c
user: rillig <rillig%NetBSD.org@localhost>
date: Sun Nov 08 23:30:59 2020 +0000
description:
make(1): sort debug flags alphabetically
DEBUG_FOR had been accidentally left at the end of the list.
diffstat:
usr.bin/make/make.h | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diffs (46 lines):
diff -r 2f49dd04e4b3 -r bd80cc8ba51c usr.bin/make/make.h
--- a/usr.bin/make/make.h Sun Nov 08 23:20:19 2020 +0000
+++ b/usr.bin/make/make.h Sun Nov 08 23:30:59 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.202 2020/11/08 15:18:09 rillig Exp $ */
+/* $NetBSD: make.h,v 1.203 2020/11/08 23:30:59 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -501,21 +501,21 @@
DEBUG_CWD = 1 << 2,
DEBUG_DIR = 1 << 3,
DEBUG_ERROR = 1 << 4,
- DEBUG_GRAPH1 = 1 << 5,
- DEBUG_GRAPH2 = 1 << 6,
- DEBUG_GRAPH3 = 1 << 7,
- DEBUG_HASH = 1 << 8,
- DEBUG_JOB = 1 << 9,
- DEBUG_LOUD = 1 << 10,
- DEBUG_MAKE = 1 << 11,
- DEBUG_META = 1 << 12,
- DEBUG_PARSE = 1 << 13,
- DEBUG_SCRIPT = 1 << 14,
- DEBUG_SHELL = 1 << 15,
- DEBUG_SUFF = 1 << 16,
- DEBUG_TARG = 1 << 17,
- DEBUG_VAR = 1 << 18,
- DEBUG_FOR = 1 << 19,
+ DEBUG_FOR = 1 << 5,
+ DEBUG_GRAPH1 = 1 << 6,
+ DEBUG_GRAPH2 = 1 << 7,
+ DEBUG_GRAPH3 = 1 << 8,
+ DEBUG_HASH = 1 << 9,
+ DEBUG_JOB = 1 << 10,
+ DEBUG_LOUD = 1 << 11,
+ DEBUG_MAKE = 1 << 12,
+ DEBUG_META = 1 << 13,
+ DEBUG_PARSE = 1 << 14,
+ DEBUG_SCRIPT = 1 << 15,
+ DEBUG_SHELL = 1 << 16,
+ DEBUG_SUFF = 1 << 17,
+ DEBUG_TARG = 1 << 18,
+ DEBUG_VAR = 1 << 19,
/* Runs make in strict mode, with additional checks and better error
* handling. This is not the default mode to preserve compatibility.
Home |
Main Index |
Thread Index |
Old Index