diff options
author | 2019-01-31 10:27:28 +0000 | |
---|---|---|
committer | 2019-01-31 10:27:28 +0000 | |
commit | ebebe55caaa10577239fce471a57fdc73afedfbe (patch) | |
tree | b40fec02ca837fd1341d8ecb336d6dd22af24054 | |
parent | unwrap a line introduced in previous. (diff) | |
download | wireguard-openbsd-ebebe55caaa10577239fce471a57fdc73afedfbe.tar.xz wireguard-openbsd-ebebe55caaa10577239fce471a57fdc73afedfbe.zip |
thinko, from Scott Cheloha
-rw-r--r-- | usr.bin/make/make.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1 index dd0b8f7672c..78fc8b87021 100644 --- a/usr.bin/make/make.1 +++ b/usr.bin/make/make.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: make.1,v 1.127 2018/07/04 14:11:49 jmc Exp $ +.\" $OpenBSD: make.1,v 1.128 2019/01/31 10:27:28 espie Exp $ .\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $ .\" .\" Copyright (c) 1990, 1993 @@ -30,7 +30,7 @@ .\" .\" from: @(#)make.1 8.4 (Berkeley) 3/19/94 .\" -.Dd $Mdocdate: July 4 2018 $ +.Dd $Mdocdate: January 31 2019 $ .Dt MAKE 1 .Os .Sh NAME @@ -464,7 +464,7 @@ from sources a.c and b.c, with header file a.h: ${CC} ${CFLAGS} -c $< prog: a.o b.o - ${CC} ${CFLAGS} -o $@ a.o + ${CC} ${CFLAGS} -o $@ a.o b.o a.o b.o: a.h |