diff options
author | schwarze <> | 2014-03-18 18:48:46 +0000 |
---|---|---|
committer | schwarze <> | 2014-03-18 18:48:46 +0000 |
commit | a03be48760560eb671d388e2db43b94a8a978dd5 (patch) | |
tree | 24d09633637390ba10d7b5eaa95f83a66363264b /src/lib | |
parent | 482ea65fc0a70cb421523be34a5b5c0eae80788b (diff) | |
download | openbsd-a03be48760560eb671d388e2db43b94a8a978dd5.tar.gz openbsd-a03be48760560eb671d388e2db43b94a8a978dd5.tar.bz2 openbsd-a03be48760560eb671d388e2db43b94a8a978dd5.zip |
* Fix another instance of directly writing to the target with a utility
that might fail.
* Keep the build log clean.
* Make sure syntax checks run again when doing: make clean; make
ok espie@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/man/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/libssl/man/Makefile b/src/lib/libssl/man/Makefile index b7e4a8f156..b512dd3a0e 100644 --- a/src/lib/libssl/man/Makefile +++ b/src/lib/libssl/man/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.21 2014/03/18 18:06:25 espie Exp $ | 1 | # $OpenBSD: Makefile,v 1.22 2014/03/18 18:48:46 schwarze Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> # for NOMAN | 3 | .include <bsd.own.mk> # for NOMAN |
4 | 4 | ||
@@ -292,7 +292,8 @@ MAN= \ | |||
292 | SHA1 sha | 292 | SHA1 sha |
293 | 293 | ||
294 | ${page}.3: ${src}.pod | 294 | ${page}.3: ${src}.pod |
295 | ${POD2MAN} --section=3 --name=${page:U} ${.ALLSRC} > ${.TARGET} | 295 | @echo '${POD2MAN} --section=3 --name=${page:U} $? > $@' |
296 | @${POD2MAN} --section=3 --name=${page:U} $? > $@.tmp && mv $@.tmp $@ | ||
296 | .endfor | 297 | .endfor |
297 | 298 | ||
298 | MLINKS+=\ | 299 | MLINKS+=\ |
@@ -1122,11 +1123,12 @@ maninstall: | |||
1122 | .SUFFIXES: .pod .1 .3 .7 | 1123 | .SUFFIXES: .pod .1 .3 .7 |
1123 | .for sect in 1 3 7 | 1124 | .for sect in 1 3 7 |
1124 | .pod.${sect}: | 1125 | .pod.${sect}: |
1125 | ${POD2MAN} --section=${sect} --name=${*:U} $< > $@.tmp && mv $@.tmp $@ | 1126 | @echo '${POD2MAN} --section=${sect} --name=${*:U} $< > $@' |
1127 | @${POD2MAN} --section=${sect} --name=${*:U} $< > $@.tmp && mv $@.tmp $@ | ||
1126 | .endfor | 1128 | .endfor |
1127 | 1129 | ||
1128 | .include <bsd.obj.mk> | 1130 | .include <bsd.obj.mk> |
1129 | .include <bsd.subdir.mk> | 1131 | .include <bsd.subdir.mk> |
1130 | 1132 | ||
1131 | clean cleandir: | 1133 | clean cleandir: |
1132 | rm -f ${MAN} | 1134 | rm -f ${MAN} ${MANLINT} |