From 588020678f34b89925fcfbcaf8f635c5850e8e7a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 11 Jun 2020 22:10:07 +0200 Subject: all: use more respective language Some terms are normalised on the technical level but may be oppressive on a societal level. Replace them with more technically neutral terms. See the following doc for a longer version: https://tools.ietf.org/id/draft-knodel-terminology-00.html --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b4572b337..0124fc64c 100644 --- a/Makefile +++ b/Makefile @@ -99,7 +99,7 @@ endif bin/syz-extract bin/syz-fmt \ extract generate generate_go generate_sys \ format format_go format_cpp format_sys \ - tidy test test_race check_copyright check_links check_diff \ + tidy test test_race check_copyright check_language check_links check_diff \ arch arch_darwin_amd64_host arch_linux_amd64_host \ arch_freebsd_amd64_host arch_netbsd_amd64_host \ arch_linux_amd64_target arch_linux_386_target \ @@ -321,7 +321,7 @@ presubmit: presubmit_smoke: $(MAKE) generate - $(MAKE) -j100 check_diff check_copyright check_links presubmit_build + $(MAKE) -j100 check_diff check_copyright check_language check_links presubmit_build $(MAKE) test presubmit_build: @@ -394,6 +394,9 @@ install_prerequisites: check_copyright: ./tools/check-copyright.sh +check_language: + ./tools/check-language.sh + check_links: python ./tools/check_links.py $$(pwd) $$(ls ./*.md; find ./docs/ -name '*.md') -- cgit mrf-deployment