diff options
author | 2014-03-18 18:06:25 +0000 | |
---|---|---|
committer | 2014-03-18 18:06:25 +0000 | |
commit | 63d40dd8d3a7942a11148f0d85d90b06a21bea41 (patch) | |
tree | ed4ef8793d6c6f3c20eaf34e7f018a938bc33c2f | |
parent | Drop the check for badly formed *etc sets when we check signatures; it saves (diff) | |
download | wireguard-openbsd-63d40dd8d3a7942a11148f0d85d90b06a21bea41.tar.xz wireguard-openbsd-63d40dd8d3a7942a11148f0d85d90b06a21bea41.zip |
prevent failed command from generating bogus file
okay guenther@
-rw-r--r-- | lib/libssl/man/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/man/Makefile b/lib/libssl/man/Makefile index d1dfad1c783..b7e4a8f1564 100644 --- a/lib/libssl/man/Makefile +++ b/lib/libssl/man/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2013/12/23 00:09:22 jca Exp $ +# $OpenBSD: Makefile,v 1.21 2014/03/18 18:06:25 espie Exp $ .include <bsd.own.mk> # for NOMAN @@ -1122,7 +1122,7 @@ maninstall: .SUFFIXES: .pod .1 .3 .7 .for sect in 1 3 7 .pod.${sect}: - ${POD2MAN} --section=${sect} --name=${*:U} ${.IMPSRC} > ${.TARGET} + ${POD2MAN} --section=${sect} --name=${*:U} $< > $@.tmp && mv $@.tmp $@ .endfor .include <bsd.obj.mk> |