diff options
author | espie <> | 2014-03-18 18:06:25 +0000 |
---|---|---|
committer | espie <> | 2014-03-18 18:06:25 +0000 |
commit | 482ea65fc0a70cb421523be34a5b5c0eae80788b (patch) | |
tree | c19f4e6a2306e0150053418bd1a88edb886d728d /src/lib | |
parent | 26550da6583df81675b762ecb111b695c4faa098 (diff) | |
download | openbsd-482ea65fc0a70cb421523be34a5b5c0eae80788b.tar.gz openbsd-482ea65fc0a70cb421523be34a5b5c0eae80788b.tar.bz2 openbsd-482ea65fc0a70cb421523be34a5b5c0eae80788b.zip |
prevent failed command from generating bogus file
okay guenther@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/man/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
1 | # $OpenBSD: Makefile,v 1.20 2013/12/23 00:09:22 jca Exp $ | 1 | # $OpenBSD: Makefile,v 1.21 2014/03/18 18:06:25 espie Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> # for NOMAN | 3 | .include <bsd.own.mk> # for NOMAN |
4 | 4 | ||
@@ -1122,7 +1122,7 @@ maninstall: | |||
1122 | .SUFFIXES: .pod .1 .3 .7 | 1122 | .SUFFIXES: .pod .1 .3 .7 |
1123 | .for sect in 1 3 7 | 1123 | .for sect in 1 3 7 |
1124 | .pod.${sect}: | 1124 | .pod.${sect}: |
1125 | ${POD2MAN} --section=${sect} --name=${*:U} ${.IMPSRC} > ${.TARGET} | 1125 | ${POD2MAN} --section=${sect} --name=${*:U} $< > $@.tmp && mv $@.tmp $@ |
1126 | .endfor | 1126 | .endfor |
1127 | 1127 | ||
1128 | .include <bsd.obj.mk> | 1128 | .include <bsd.obj.mk> |