diff options
| author | lukem <lukem@NetBSD.org> | 2023-06-03 09:09:01 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2023-06-03 09:09:01 +0000 |
| commit | ff6601a6cc5f10bccaf009e4e2b72c75774d7a4d (patch) | |
| tree | 87fe4eb9bda81296a5ed95f9cf55e1a2bf1ecd9a /usr.bin/sort | |
| parent | abaa8cb87058c08ad0688c849a28f4e007c07bbb (diff) | |
bsd.own.mk: rename GCC_NO_* to CC_WNO_*
Rename compiler-warning-disable variables from
GCC_NO_warning
to
CC_WNO_warning
where warning is the full warning name as used by the compiler.
GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH
Using the convention CC_compilerflag, where compilerflag
is based on the full compiler flag name.
Diffstat (limited to 'usr.bin/sort')
| -rw-r--r-- | usr.bin/sort/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile index 505bcfbe160..d7d86773bce 100644 --- a/usr.bin/sort/Makefile +++ b/usr.bin/sort/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2019/10/13 07:28:17 mrg Exp $ +# $NetBSD: Makefile,v 1.10 2023/06/03 09:09:18 lukem Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= sort @@ -8,6 +8,6 @@ SRCS+= radix_sort.c LDADD+=-lutil DPADD+=${LIBUTIL} -COPTS.init.c+= ${GCC_NO_FORMAT_TRUNCATION} +COPTS.init.c+= ${CC_WNO_FORMAT_TRUNCATION} .include <bsd.prog.mk> |
