diff options
author | ru <ru@FreeBSD.org> | 2001-04-19 09:10:53 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-04-19 09:10:53 +0000 |
commit | e95b868ce4766e916c5ab947d9d1e295414ab2e0 (patch) | |
tree | c16cd0e938e4b201dde85d8152a5d401406dc65c /gnu | |
parent | e40c837b33117e8e44d70501eefc68c6da212b48 (diff) | |
download | FreeBSD-src-e95b868ce4766e916c5ab947d9d1e295414ab2e0.zip FreeBSD-src-e95b868ce4766e916c5ab947d9d1e295414ab2e0.tar.gz |
Work around the problem in multi-job make(1).
(Fixes ``make -jN buildworld'' breakage in bootstrap-tools.)
Reported by: Steve Kargl <sgk@troutmask.apl.washington.edu>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/groff/tmac/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/groff/tmac/Makefile b/gnu/usr.bin/groff/tmac/Makefile index 8b9de6e..9f55232 100644 --- a/gnu/usr.bin/groff/tmac/Makefile +++ b/gnu/usr.bin/groff/tmac/Makefile @@ -58,6 +58,8 @@ beforeinstall: cd ${.CURDIR}; \ ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ hyphen.us-ru ${DESTDIR}${TMACDIR} +# XXX: multi-job make chokes without this + cd ${.OBJDIR} .for f in ${STRIPFILES} ${SPECIALFILES} ${INSTALL} ${COPY} -o ${TMACOWN} -g ${TMACGRP} -m ${TMACMODE} \ $f-s ${DESTDIR}${TMACDIR}/$f |