libstdc++: Use -C option to run recursive make in sub-directories

libstdc++-v3/ChangeLog:

	* Makefile.am: Use $(MAKE) -C dir instead of cd dir && $(MAKE).
	* Makefile.in: Regenerate.
This commit is contained in:
Jonathan Wakely
2024-11-14 18:25:50 +00:00
committed by Jonathan Wakely
parent 4f9af8e4d1
commit 63798670e1
2 changed files with 4 additions and 4 deletions

View File

@@ -34,11 +34,11 @@ ACLOCAL_AMFLAGS = -I . -I .. -I ../config
# Testsuite/check forwarding targets.
check-%:
cd testsuite && $(MAKE) $@
$(MAKE) -C testsuite $@
# Documentation forwarding targets.
doc-%:
cd doc && $(MAKE) $@
$(MAKE) -C doc $@
# Documentation conditionals for output.
if BUILD_XML

View File

@@ -778,11 +778,11 @@ uninstall-am:
# Testsuite/check forwarding targets.
check-%:
cd testsuite && $(MAKE) $@
$(MAKE) -C testsuite $@
# Documentation forwarding targets.
doc-%:
cd doc && $(MAKE) $@
$(MAKE) -C doc $@
# Documentation primary rules.
#