From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1141) id 54E1F3858D20; Wed, 30 Nov 2022 03:33:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 54E1F3858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1669779198; bh=QSEkJAGCexraMJ6QX56Z+mQ59cWLotxKem/8KRMEK9A=; h=From:To:Subject:Date:From; b=CZURqTWDhpttwnLoCsBLCeOHxcrzbBA0heb8WKDTuAxYjfFtUZU6sB8ptQNuySbo+ WSqVbR+kwIhtuA/BRSLRKgZrjLPfd01b+IxeV5F5TlfXd7smhJW9Bo1Nhe0Gw80a/p 451dmsyeOCNW1RXs2y9qaAUjmxwHAjsgEt6SNpyE= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Joel Brobecker To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] src-release.sh: Fix gdb source tarball build failure due to libsframe X-Act-Checkin: binutils-gdb X-Git-Author: Joel Brobecker X-Git-Refname: refs/heads/master X-Git-Oldrev: eb362ca1a6ccfe04fa44bc7ce3c244061ec02a19 X-Git-Newrev: 629e5e1ae89023bf4dbde9333d18ff4aead2c708 Message-Id: <20221130033318.54E1F3858D20@sourceware.org> Date: Wed, 30 Nov 2022 03:33:18 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D629e5e1ae890= 23bf4dbde9333d18ff4aead2c708 commit 629e5e1ae89023bf4dbde9333d18ff4aead2c708 Author: Joel Brobecker Date: Sun Nov 27 16:43:42 2022 +0400 src-release.sh: Fix gdb source tarball build failure due to libsframe =20 This script was recently changed as follow: =20 | commit e619dddb3a45780ae66d762756882a3b896b617d | Date: Tue Nov 15 15:07:13 2022 -0800 | Subject: src-release.sh: Add libsframe | | Add libsframe to the list of top level directories that will be i= ncluded | in a release. =20 Since then, the gdb source tarball has been failing with the error below during the "make configure-host configure-target" phase: =20 | make[3]: *** No rule to make target '../libsframe/libsframe.la', | needed by 'libbfd.la'. Stop. | make[3]: Leaving directory '/tmp/gdb-public/bfd' =20 This patch fixes the issue by adding libsframe to the list of GDB_SUPPORT_DIRS, similar to what was done for BINUTILS. =20 ChangeLog: =20 * src-release.sh (GDB_SUPPORT_DIRS): Add libsframe. Diff: --- src-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-release.sh b/src-release.sh index 050a8eb958d..ec28f8691c7 100755 --- a/src-release.sh +++ b/src-release.sh @@ -322,7 +322,7 @@ gas_release() tar_compress $package $tool "$GAS_SUPPORT_DIRS" "$compressors" } =20 -GDB_SUPPORT_DIRS=3D"bfd include libiberty libctf opcodes readline sim intl= libdecnumber cpu zlib contrib gnulib gdbsupport gdbserver libbacktrace" +GDB_SUPPORT_DIRS=3D"libsframe bfd include libiberty libctf opcodes readlin= e sim intl libdecnumber cpu zlib contrib gnulib gdbsupport gdbserver libbac= ktrace" gdb_release() { compressors=3D$1