libstdc++: Fix install-debug makefile target

This target should have been changed by r13-3918-gba7551485bc576 and now
fails.

libstdc++-v3/ChangeLog:

	* src/Makefile.am (install-debug): Remove use of $(debugdir).
	* src/Makefile.in: Regenerate.
This commit is contained in:
Bernhard Reutner-Fischer 2022-11-14 10:13:47 +00:00 committed by Jonathan Wakely
parent ce51e8439a
commit 3c6721796d
2 changed files with 4 additions and 4 deletions

View file

@ -422,5 +422,5 @@ build-debug: stamp-debug $(debug_backtrace_supported_h)
# Install debug library.
install-debug: build-debug
(cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' \
toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install) ;
$(MAKE) -C debug CXXFLAGS='$(DEBUG_FLAGS)' \
toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install

View file

@ -1142,8 +1142,8 @@ build-debug: stamp-debug $(debug_backtrace_supported_h)
# Install debug library.
install-debug: build-debug
(cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' \
toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install) ;
$(MAKE) -C debug CXXFLAGS='$(DEBUG_FLAGS)' \
toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.