Module Name: src
Committed By: cheusov
Date: Sat May 28 21:53:54 UTC 2011
Modified Files:
src/usr.bin/make: make.1
Log Message:
fix bug in section .ORDER of make.1
To generate a diff of this commit:
cvs rdiff -u -r1.191 -r1.192 src/usr.bin/make/make.1
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/make.1
diff -u src/usr.bin/make/make.1:1.191 src/usr.bin/make/make.1:1.192
--- src/usr.bin/make/make.1:1.191 Wed May 4 21:24:59 2011
+++ src/usr.bin/make/make.1 Sat May 28 21:53:54 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: make.1,v 1.191 2011/05/04 21:24:59 wiz Exp $
+.\" $NetBSD: make.1,v 1.192 2011/05/28 21:53:54 cheusov Exp $
.\"
.\" Copyright (c) 1990, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94
.\"
-.Dd May 4, 2011
+.Dd May 29, 2011
.Dt MAKE 1
.Os
.Sh NAME
@@ -1867,7 +1867,7 @@
is built by another part of the dependency graph,
the following is a dependency loop:
.Bd -literal
-\&.ORDER: a b
+\&.ORDER: b a
b: a
.Ed
.Pp