Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-02-10 07:26:19 +0300
committerMike Frysinger <vapier@gentoo.org>2022-02-10 07:26:19 +0300
commit5c21b3721475c0d848b567837b4459cffcf0ca13 (patch)
tree9950864eb4e588d1c11bfb0daef66298d8931e65 /newlib/Makefile.in
parent006da84337d31354b2f8ed21039b5a8bbc579b9b (diff)
newlib: fix mkdoc dependencies
Make sure we depend on the right name of mkdoc all the time, and that the rules that need it (e.g. .def files) depend on it. Reported-by: Jon Turney <jon.turney@dronecode.org.uk>
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r--newlib/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in
index e76fa582a..fd6323260 100644
--- a/newlib/Makefile.in
+++ b/newlib/Makefile.in
@@ -93,7 +93,7 @@ host_triplet = @host@
@HAVE_MULTISUBDIR_TRUE@am__append_2 = $(BUILD_MULTISUBDIR)/libc.a $(BUILD_MULTISUBDIR)/libm.a
# We can't use noinst_PROGRAMS, because automake will add $(EXEEXT).
-@HAVE_DOC_TRUE@am__append_3 = doc/makedoc
+@HAVE_DOC_TRUE@am__append_3 = $(MKDOC)
@HAVE_DOC_TRUE@am__append_4 = man-cache
#
@@ -1759,6 +1759,7 @@ clean-local:
@HAVE_DOC_TRUE@.c.xml:
@HAVE_DOC_TRUE@ $(AM_V_GEN)$(DOCBOOK_CHEW) < $< > $*.xml || ( rm $*.xml && false )
+$(LIBC_CHEWOUT_FILES): $(MKDOC)
libc/libc.dvi: libc/targetdep.tex $(LIBC_CHEWOUT_FILES)
@@ -1786,6 +1787,7 @@ libc_install-man: libc_man
$(MKDIR_P) $(DESTDIR)$(mandir)/man3
$(INSTALL_DATA) libc/*.3 $(DESTDIR)$(mandir)/man3/
install-man: libc_install-man
+$(LIBM_CHEWOUT_FILES): $(MKDOC)
libm/libm.dvi: libm/targetdep.tex $(LIBM_CHEWOUT_FILES)