From owner-svn-src-head@freebsd.org Fri Jul 27 10:44:40 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 822C31046150; Fri, 27 Jul 2018 10:44:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 328608ED90; Fri, 27 Jul 2018 10:44:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0D22B16DB3; Fri, 27 Jul 2018 10:44:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6RAid18077140; Fri, 27 Jul 2018 10:44:39 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6RAic41077134; Fri, 27 Jul 2018 10:44:38 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201807271044.w6RAic41077134@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Fri, 27 Jul 2018 10:44:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r336758 - head/share/mk X-SVN-Group: head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: head/share/mk X-SVN-Commit-Revision: 336758 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2018 10:44:40 -0000 Author: eadler Date: Fri Jul 27 10:44:38 2018 New Revision: 336758 URL: https://svnweb.freebsd.org/changeset/base/336758 Log: Feex a cuple of small typos Modified: head/share/mk/atf.test.mk head/share/mk/bsd.own.mk head/share/mk/bsd.sys.mk head/share/mk/bsd.test.mk head/share/mk/meta.sys.mk head/share/mk/plain.test.mk head/share/mk/tap.test.mk Modified: head/share/mk/atf.test.mk ============================================================================== --- head/share/mk/atf.test.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/atf.test.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -16,7 +16,7 @@ # require the ATF libraries. # # Test programs registered in this manner are set to be installed into TESTSDIR -# (which should be overriden by the Makefile) and are not required to provide a +# (which should be overridden by the Makefile) and are not required to provide a # manpage. ATF_TESTS_C?= ATF_TESTS_CXX?= Modified: head/share/mk/bsd.own.mk ============================================================================== --- head/share/mk/bsd.own.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/bsd.own.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -267,7 +267,7 @@ XZ_CMD?= xz PKG_CMD?= pkg # Pointer to the top directory into which tests are installed. Should not be -# overriden by Makefiles, but the user may choose to set this in src.conf(5). +# overridden by Makefiles, but the user may choose to set this in src.conf(5). TESTSBASE?= /usr/tests DEPENDFILE?= .depend Modified: head/share/mk/bsd.sys.mk ============================================================================== --- head/share/mk/bsd.sys.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/bsd.sys.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -221,7 +221,7 @@ CFLAGS+= ${SSP_CFLAGS} DEBUG_FILES_CFLAGS?= -g # Allow user-specified additional warning flags, plus compiler and file -# specific flag overrides, unless we've overriden this... +# specific flag overrides, unless we've overridden this... .if ${MK_WARNS} != "no" CFLAGS+= ${CWARNFLAGS:M*} ${CWARNFLAGS.${COMPILER_TYPE}} CFLAGS+= ${CWARNFLAGS.${.IMPSRC:T}} Modified: head/share/mk/bsd.test.mk ============================================================================== --- head/share/mk/bsd.test.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/bsd.test.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -42,7 +42,7 @@ TESTS_ENV?= # Force all tests in a separate distribution file. # # We want this to be the case even when the distribution name is already -# overriden. For example: we want the tests for programs in the 'games' +# overridden. For example: we want the tests for programs in the 'games' # distribution to end up in the 'tests' distribution; the test programs # themselves have all the necessary logic to detect that the games are not # installed and thus won't cause false negatives. Modified: head/share/mk/meta.sys.mk ============================================================================== --- head/share/mk/meta.sys.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/meta.sys.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -23,7 +23,7 @@ .-include "local.meta.sys.mk" -# absoulte path to what we are reading. +# absolute path to what we are reading. _PARSEDIR = ${.PARSEDIR:tA} .if !defined(SYS_MK_DIR) Modified: head/share/mk/plain.test.mk ============================================================================== --- head/share/mk/plain.test.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/plain.test.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -16,7 +16,7 @@ # PROGS, PROGS_CXX and SCRIPTS, respectively. # # Test programs registered in this manner are set to be installed into TESTSDIR -# (which should be overriden by the Makefile) and are not required to provide a +# (which should be overridden by the Makefile) and are not required to provide a # manpage. PLAIN_TESTS_C?= PLAIN_TESTS_CXX?= Modified: head/share/mk/tap.test.mk ============================================================================== --- head/share/mk/tap.test.mk Fri Jul 27 10:40:48 2018 (r336757) +++ head/share/mk/tap.test.mk Fri Jul 27 10:44:38 2018 (r336758) @@ -18,7 +18,7 @@ # PROGS, PROGS_CXX and SCRIPTS, respectively. # # Test programs registered in this manner are set to be installed into TESTSDIR -# (which should be overriden by the Makefile) and are not required to provide a +# (which should be overridden by the Makefile) and are not required to provide a # manpage. TAP_TESTS_C?= TAP_TESTS_CXX?=