diff options
author | 2014-11-07 00:40:27 +0000 | |
---|---|---|
committer | 2014-11-07 00:40:27 +0000 | |
commit | 637ce59e1798928e524829d55a995755509a6bc1 (patch) | |
tree | 7a0098058a6c41727bd2c25f131ceb7801bc0831 | |
parent | Let -Tascii \(bu (bullet) output agree with groff; (diff) | |
download | wireguard-openbsd-637ce59e1798928e524829d55a995755509a6bc1.tar.xz wireguard-openbsd-637ce59e1798928e524829d55a995755509a6bc1.zip |
at the end of make obj-clean, run make clean in the right directory
-rw-r--r-- | regress/usr.bin/mandoc/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/mandoc/Makefile.inc b/regress/usr.bin/mandoc/Makefile.inc index 1b9758955b6..34454a0f5ca 100644 --- a/regress/usr.bin/mandoc/Makefile.inc +++ b/regress/usr.bin/mandoc/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.17 2014/10/30 17:45:58 schwarze Exp $ +# $OpenBSD: Makefile.inc,v 1.18 2014/11/07 00:40:27 schwarze Exp $ .include "Makefile.sub" @@ -285,7 +285,7 @@ lint-out-clean: obj-check obj-clean: rm -rf ${.CURDIR}/obj/* rm -f ${.CURDIR}/obj - ${MAKE} clean + cd ${.CURDIR} && ${MAKE} clean obj-check: @test ! -e ${.CURDIR}/obj || \ |