Module Name: src
Committed By: sjg
Date: Mon Jun 1 23:28:39 UTC 2009
Modified Files:
src/usr.bin/make: make.1
Log Message:
Missing ':' in .ORDER example
To generate a diff of this commit:
cvs rdiff -u -r1.157 -r1.158 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.157 src/usr.bin/make/make.1:1.158
--- src/usr.bin/make/make.1:1.157 Wed May 13 22:56:42 2009
+++ src/usr.bin/make/make.1 Mon Jun 1 23:28:39 2009
@@ -1,4 +1,4 @@
-.\" $NetBSD: make.1,v 1.157 2009/05/13 22:56:42 wiz Exp $
+.\" $NetBSD: make.1,v 1.158 2009/06/01 23:28:39 sjg 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 April 11, 2009
+.Dd June 1, 2009
.Dt MAKE 1
.Os
.Sh NAME
@@ -1664,7 +1664,7 @@
is built by another part of the dependency graph,
the following is a dependency loop:
.Bd -literal
-\&.ORDER a b
+\&.ORDER: a b
b: a
.Ed
.Pp