diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-02-14 16:10:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-02-14 16:10:18 +0000 |
commit | db3bfcd64cab692328aa2adfe7a1585e4e83512e (patch) | |
tree | 49a9bf2ef09b9398631637d6b9995945c6e1530c /ld/emultempl | |
parent | f1d39876d02e254c892b58e14c18b40cd188cede (diff) | |
download | gdb-db3bfcd64cab692328aa2adfe7a1585e4e83512e.zip gdb-db3bfcd64cab692328aa2adfe7a1585e4e83512e.tar.gz gdb-db3bfcd64cab692328aa2adfe7a1585e4e83512e.tar.bz2 |
* emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Strip
`:foo' from ${ARCH}.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/elf32.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 16a96af..ebb391e 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -66,7 +66,7 @@ static char *gld${EMULATION_NAME}_get_script PARAMS ((int *isfile)); static void gld${EMULATION_NAME}_before_parse() { - ldfile_output_architecture = bfd_arch_${ARCH}; + ldfile_output_architecture = bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`; config.dynamic_link = ${DYNAMIC_LINK-true}; } |