From 482ea65fc0a70cb421523be34a5b5c0eae80788b Mon Sep 17 00:00:00 2001 From: espie <> Date: Tue, 18 Mar 2014 18:06:25 +0000 Subject: prevent failed command from generating bogus file okay guenther@ --- src/lib/libssl/man/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/libssl/man/Makefile b/src/lib/libssl/man/Makefile index d1dfad1c78..b7e4a8f156 100644 --- a/src/lib/libssl/man/Makefile +++ b/src/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 # 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 -- cgit v1.2.3-55-g6feb