From ad68ec27c3e72d4639f425c62c2a4cfa8562aa03 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 16 Nov 2021 12:41:30 +0000 Subject: [PATCH] Fix 'make man' after 67208d9e Remove a left over use of doc/Makefile after 67208d9e ('newlib: merge doc into top-level Makefile') to fix 'make man'. --- newlib/Makefile.am | 2 +- newlib/Makefile.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/newlib/Makefile.am b/newlib/Makefile.am index 1ab75f995..d3da43a4b 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -426,7 +426,7 @@ info-recursive dvi-recursive: doc/makedoc$(EXEEXT_FOR_BUILD) # Recursive targets for man and install-man man: - (cd doc && $(MAKE) man-cache) || exit 1; \ + $(MAKE) man-cache || exit 1; \ for d in $(SUBDIRS); do \ if test "$$d" != "."; then \ (cd $$d && $(MAKE) man) || exit 1; \ diff --git a/newlib/Makefile.in b/newlib/Makefile.in index cbbb92197..bf15dfea3 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -1189,7 +1189,7 @@ info-recursive dvi-recursive: doc/makedoc$(EXEEXT_FOR_BUILD) # Recursive targets for man and install-man man: - (cd doc && $(MAKE) man-cache) || exit 1; \ + $(MAKE) man-cache || exit 1; \ for d in $(SUBDIRS); do \ if test "$$d" != "."; then \ (cd $$d && $(MAKE) man) || exit 1; \ -- 2.43.5