From owner-svn-src-stable-7@FreeBSD.ORG Sun Jul 4 18:49:16 2010 Return-Path: Delivered-To: svn-src-stable-7@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61DE41065743; Sun, 4 Jul 2010 18:49:16 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 353D68FC1B; Sun, 4 Jul 2010 18:49:16 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o64InGg4014888; Sun, 4 Jul 2010 18:49:16 GMT (envelope-from brueffer@svn.freebsd.org) Received: (from brueffer@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o64InGVp014886; Sun, 4 Jul 2010 18:49:16 GMT (envelope-from brueffer@svn.freebsd.org) Message-Id: <201007041849.o64InGVp014886@svn.freebsd.org> From: Christian Brueffer Date: Sun, 4 Jul 2010 18:49:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r209701 - stable/7/usr.bin/make X-BeenThere: svn-src-stable-7@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 7-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jul 2010 18:49:16 -0000 Author: brueffer Date: Sun Jul 4 18:49:15 2010 New Revision: 209701 URL: http://svn.freebsd.org/changeset/base/209701 Log: MFC: r207948 - Missing full stops - Upper case the first character of an description - Section headings do not need to be quoted. From OpenBSD's make.1, revision 1.81 - Plural of suffix is suffixes. From OpenBSD's make.1, revision 1.61 - s/seperating/separating/ Modified: stable/7/usr.bin/make/make.1 Directory Properties: stable/7/usr.bin/make/ (props changed) Modified: stable/7/usr.bin/make/make.1 ============================================================================== --- stable/7/usr.bin/make/make.1 Sun Jul 4 18:48:43 2010 (r209700) +++ stable/7/usr.bin/make/make.1 Sun Jul 4 18:49:15 2010 (r209701) @@ -960,7 +960,7 @@ Otherwise is the substring of .Ar old_string to be replaced in -.Ar new_string +.Ar new_string . .It Cm T Replaces each word in the variable with its last component. .It Cm U @@ -1108,7 +1108,7 @@ The may be any one of the following: .Bl -tag -width "Cm XX" .It Cm || -logical +Logical .Tn OR .It Cm && Logical @@ -1298,7 +1298,7 @@ made before the sources that succeed it Loops are not being detected and targets that form loops will be silently ignored. .El -.Sh "SPECIAL TARGETS" +.Sh SPECIAL TARGETS Special targets may not be included with other targets, i.e., they must be the only target specified. .Bl -tag -width Ic @@ -1590,7 +1590,7 @@ command in the file. .It Ic .SUFFIXES Each source specifies a suffix to .Nm . -If no sources are specified, any previous specified suffices are deleted. +If no sources are specified, any previous specified suffixes are deleted. .It Ic .WARN Each source specifies a warning flag as previously described for the .Fl x @@ -1603,7 +1603,7 @@ environment variables so that a warning line will influence all sub-makes. Several flags can be specified on a single .Ic .WARN -target by seperating them with blanks. +target by separating them with blanks. .El .Sh REMAKING MAKEFILES If the special target @@ -1748,7 +1748,7 @@ The evaluation of .Ar expression in a test is very simple-minded. Currently, the only form that works is -.Ql .if ${VAR} op something +.Ql .if ${VAR} op something . For instance, you should write tests as .Ql .if ${VAR} == "string" not the other way around, which would give you an error.