From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 43B653858C1F; Mon, 14 Nov 2022 10:17:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 43B653858C1F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668421044; bh=XunxuveR0wch7fv7UwQcLxJlx7uSuFXha3B1G4FKE4Y=; h=From:To:Subject:Date:From; b=oxa5xTWNc8ksi5EjJT/t7RxpcXD0UzbDGwVNgp0MinjUd1a3hKbxVto/gqcB57YCw 2jIAXNIiVUcehs3cS2TCmk7LZ3YRE7KgrbhlvgLFBWpdiYiWYv/RvWZlf2GcwVrwF8 puQQdbBGJFKl7wRi3jT4KaWVYZjplO5BukKGW2jk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r13-4002] libstdc++: Fix install-debug makefile target X-Act-Checkin: gcc X-Git-Author: Bernhard Reutner-Fischer X-Git-Refname: refs/heads/master X-Git-Oldrev: ce51e8439a491910348a1c5aea43b55f000ba8ac X-Git-Newrev: 3c6721796d8da82584559d0011b69ca3109eeff7 Message-Id: <20221114101724.43B653858C1F@sourceware.org> Date: Mon, 14 Nov 2022 10:17:24 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3c6721796d8da82584559d0011b69ca3109eeff7 commit r13-4002-g3c6721796d8da82584559d0011b69ca3109eeff7 Author: Bernhard Reutner-Fischer Date: Mon Nov 14 10:13:47 2022 +0000 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. Diff: --- libstdc++-v3/src/Makefile.am | 4 ++-- libstdc++-v3/src/Makefile.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libstdc++-v3/src/Makefile.am b/libstdc++-v3/src/Makefile.am index b545ebf0dcf..59d992a091c 100644 --- a/libstdc++-v3/src/Makefile.am +++ b/libstdc++-v3/src/Makefile.am @@ -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 diff --git a/libstdc++-v3/src/Makefile.in b/libstdc++-v3/src/Makefile.in index f54ee282fb0..b19eef0adc8 100644 --- a/libstdc++-v3/src/Makefile.in +++ b/libstdc++-v3/src/Makefile.in @@ -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.