diff options
author | Alan Modra <amodra@gmail.com> | 2010-11-15 22:01:17 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-11-15 22:01:17 +0000 |
commit | c85f715a62b5282c19da485e133686f29675b801 (patch) | |
tree | e0be499785e215770be5025923fd87507dc47438 /ld | |
parent | 38626e2529f755d6e46efa92817937a700b119ea (diff) | |
download | binutils-c85f715a62b5282c19da485e133686f29675b801.zip binutils-c85f715a62b5282c19da485e133686f29675b801.tar.gz binutils-c85f715a62b5282c19da485e133686f29675b801.tar.bz2 |
* emultempl/pe.em (_list_options): Correct typo.
* emultempl/pep.em (_list_options): Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emultempl/pe.em | 4 | ||||
-rw-r--r-- | ld/emultempl/pep.em | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index d2ad435..6af766e 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2010-11-16 Yasuaki Taniguchi <taniguchi.yasua@jp.fujitsu.com> + + * emultempl/pe.em (_list_options): Correct typo. + * emultempl/pep.em (_list_options): Likewise. + 2010-11-08 Thomas Schwinge <thomas@schwinge.name> * configure.host: Add stanza for *-*-gnu*. diff --git a/ld/emultempl/pe.em b/ld/emultempl/pe.em index bb283c1..24c1fe7 100644 --- a/ld/emultempl/pe.em +++ b/ld/emultempl/pe.em @@ -9,7 +9,7 @@ rm -f e${EMULATION_NAME}.c (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-) fragment <<EOF /* Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, - 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. + 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of the GNU Binutils. @@ -455,7 +455,7 @@ gld_${EMULATION_NAME}_list_options (FILE *file) fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\ an importlib, use <string><basename>.dll\n\ in preference to lib<basename>.dll \n")); - fprintf (file, _(" --enable-auto-import Do sophistcated linking of _sym to\n\ + fprintf (file, _(" --enable-auto-import Do sophisticated linking of _sym to\n\ __imp_sym for DATA references\n")); fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n")); fprintf (file, _(" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n\ diff --git a/ld/emultempl/pep.em b/ld/emultempl/pep.em index 39daa07..444704b 100644 --- a/ld/emultempl/pep.em +++ b/ld/emultempl/pep.em @@ -8,7 +8,7 @@ fi rm -f e${EMULATION_NAME}.c (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-) fragment <<EOF -/* Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +/* Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Written by Kai Tietz, OneVision Software GmbH&CoKg. This file is part of the GNU Binutils. @@ -383,7 +383,7 @@ gld_${EMULATION_NAME}_list_options (FILE *file) fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll without\n\ an importlib, use <string><basename>.dll\n\ in preference to lib<basename>.dll \n")); - fprintf (file, _(" --enable-auto-import Do sophistcated linking of _sym to\n\ + fprintf (file, _(" --enable-auto-import Do sophisticated linking of _sym to\n\ __imp_sym for DATA references\n")); fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n")); fprintf (file, _(" --enable-runtime-pseudo-reloc Work around auto-import limitations by\n\ |