Skip to content

Commit 629e5e1

Browse files
committed
src-release.sh: Fix gdb source tarball build failure due to libsframe
This script was recently changed as follow: | commit e619ddd | 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 included | in a release. Since then, the gdb source tarball has been failing with the error below during the "make configure-host configure-target" phase: | make[3]: *** No rule to make target '../libsframe/libsframe.la', | needed by 'libbfd.la'. Stop. | make[3]: Leaving directory '/tmp/gdb-public/bfd' This patch fixes the issue by adding libsframe to the list of GDB_SUPPORT_DIRS, similar to what was done for BINUTILS. ChangeLog: * src-release.sh (GDB_SUPPORT_DIRS): Add libsframe.
1 parent eb362ca commit 629e5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ gas_release()
322322
tar_compress $package $tool "$GAS_SUPPORT_DIRS" "$compressors"
323323
}
324324

325-
GDB_SUPPORT_DIRS="bfd include libiberty libctf opcodes readline sim intl libdecnumber cpu zlib contrib gnulib gdbsupport gdbserver libbacktrace"
325+
GDB_SUPPORT_DIRS="libsframe bfd include libiberty libctf opcodes readline sim intl libdecnumber cpu zlib contrib gnulib gdbsupport gdbserver libbacktrace"
326326
gdb_release()
327327
{
328328
compressors=$1

0 commit comments

Comments
 (0)