diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-11-03 15:13:14 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-11-03 15:13:14 +0000 |
commit | 35361b518ec550b4cc2b707d0e14fa30572e6b66 (patch) | |
tree | af44e3b741f012b7537f15f4cbb7dbba2cbb08b3 /gnu/usr.bin/groff/Makefile.in | |
parent | 3569bef6fb08fde3ba865ea9817bae1fb5634632 (diff) |
fix groff build:
- directories must be built in sequence
- manpages can only be built after the main program is finished building.
Diffstat (limited to 'gnu/usr.bin/groff/Makefile.in')
-rw-r--r-- | gnu/usr.bin/groff/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/groff/Makefile.in b/gnu/usr.bin/groff/Makefile.in index dd0ef84a973..0b00c2e6945 100644 --- a/gnu/usr.bin/groff/Makefile.in +++ b/gnu/usr.bin/groff/Makefile.in @@ -271,7 +271,9 @@ subdir=troff $(TARGETS): - @$(MAKE) $(MDEFINES) do=$@ $(dodirs) + @for i in $(dodirs); do \ + $(MAKE) $(MDEFINES) do=$@ $$i; \ + done dot: FORCE @$(MAKE) $(MDEFINES) srcdir=$(srcdir) VPATH=$(srcdir) \ |