diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-01-18 23:17:49 -0800 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-01-18 23:17:49 -0800 |
commit | b8d21eb0cd10d6127e77cc437d82e949adb0c454 (patch) | |
tree | 8d722b695903d56496d470eab9c232fe28727c2b /Makefile.in | |
parent | 066bd434118044487e69a9fbc5cacdee60326595 (diff) | |
download | gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.zip gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.tar.gz gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.tar.bz2 |
toplevel: Makefile.def: add install-strip dependency on libsframe
As noted in PR libsframe/30014 - FTBFS: install-strip fails because
bfdlib relinks and fails to find libsframe, the install time
dependencies of libbfd need to be updated.
PR libsframe/30014
* Makefile.def: Reflect that libsframe needs to installed before
libbfd. Reorder a bit to better track libsframe dependencies.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 679e121..38f1f9a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64549,13 +64549,14 @@ all-stageautoprofile-binutils: maybe-all-stageautoprofile-libsframe all-stageautofeedback-binutils: maybe-all-stageautofeedback-libsframe install-binutils: maybe-install-opcodes install-strip-binutils: maybe-install-strip-opcodes -install-bfd: maybe-install-libsframe install-libctf: maybe-install-bfd install-ld: maybe-install-bfd install-ld: maybe-install-libctf install-strip-libctf: maybe-install-strip-bfd install-strip-ld: maybe-install-strip-bfd install-strip-ld: maybe-install-strip-libctf +install-bfd: maybe-install-libsframe +install-strip-bfd: maybe-install-strip-libsframe configure-opcodes: configure-bfd configure-stage1-opcodes: configure-stage1-bfd configure-stage2-opcodes: configure-stage2-bfd |