diff options
author | Maciej W. Rozycki <macro@mips.com> | 2018-06-09 01:09:22 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@mips.com> | 2018-06-09 01:09:22 +0100 |
commit | 2f8b83ee9629c41a171d795ff600cccb00e1b119 (patch) | |
tree | ecd8dbd6db3b4e6d4f45f5cbd7cb1c721f26802c /ld/Makefile.am | |
parent | 30d42fef63b418428c92f6081172e0e5d62b6d36 (diff) | |
download | gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.zip gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.tar.gz gdb-2f8b83ee9629c41a171d795ff600cccb00e1b119.tar.bz2 |
MIPS/LD: Add missing `mips-*-windiss' target emulation dependency
As from commit 2ebd05b80b22 ("MIPS/LD: Correct `mips-*-windiss' target
emulation configuration") we have:
EXTRA_EM_FILE=mipself
in `emulparams/elf32mipswindiss.sh', however no corresponding Makefile
`mipself.em' dependency for `eelf32mipswindiss.c'. Add it.
ld/
* Makefile.am (eelf32mipswindiss.c): Add `mipself.em' dependency.
* Makefile.in: Regenerate.
Diffstat (limited to 'ld/Makefile.am')
-rw-r--r-- | ld/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/Makefile.am b/ld/Makefile.am index f99229a..fcd9083 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -1172,7 +1172,7 @@ eelf32microblaze.c: $(srcdir)/emulparams/elf32microblaze.sh \ $(ELF_DEPS) $(srcdir)/scripttempl/elfmicroblaze.sc ${GEN_DEPENDS} eelf32mipswindiss.c: $(srcdir)/emulparams/elf32mipswindiss.sh $(ELF_DEPS) \ - $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} + $(srcdir)/emultempl/mipself.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} eelf32moxie.c: $(srcdir)/emulparams/elf32moxie.sh \ $(ELF_GEN_DEPS) $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |