diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2013-05-14 15:18:35 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2013-05-14 15:18:35 +0000 |
commit | 6ce98bea7374981e4ae39e8dd712cb7ae2b766ef (patch) | |
tree | f547a02541bd258de808c3675a1df059edae3d02 /gnu/usr.bin | |
parent | 877d672fe21728a4f786841eb6e0e87c48a7c16d (diff) |
make sure the linear ordering matches what makedoc actually does, otherwise
make -j might rebuild those spuriously when they end up being out of date...
okay millert@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/texinfo/info/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/texinfo/info/Makefile.in b/gnu/usr.bin/texinfo/info/Makefile.in index cf84054351b..fbd2ad2282f 100644 --- a/gnu/usr.bin/texinfo/info/Makefile.in +++ b/gnu/usr.bin/texinfo/info/Makefile.in @@ -14,7 +14,7 @@ @SET_MAKE@ -# $Id: Makefile.in,v 1.9 2006/07/17 16:12:36 espie Exp $ +# $Id: Makefile.in,v 1.10 2013/05/14 15:18:34 espie Exp $ # Makefile.am for texinfo/info. # Run automake in .. to produce Makefile.in from this. # @@ -572,8 +572,8 @@ uninstall-am: uninstall-binPROGRAMS uninstall-info-am # We need a linear ordering to prevent race condition in parallel make. # See the node ``(automake)Multiple Outputs'' for an explanation. -doc.c: key.c -key.c: funs.h +key.c: doc.c +doc.c: funs.h # The $(EXEEXT) should be added by Automake, but isn't. Fine. $(generated_sources): makedoc$(EXEEXT) $(cmd_sources) |