diff options
author | 2013-05-14 15:18:34 +0000 | |
---|---|---|
committer | 2013-05-14 15:18:34 +0000 | |
commit | e1ed4d0db43c76909acb723880fe15b63b9fe197 (patch) | |
tree | a8b67046b15e0657c9bff06e8a8ccf71c207ee09 | |
parent | Fix build with MRT6DEBUG defined. (diff) | |
download | wireguard-openbsd-e1ed4d0db43c76909acb723880fe15b63b9fe197.tar.xz wireguard-openbsd-e1ed4d0db43c76909acb723880fe15b63b9fe197.zip |
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@
-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) |