This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Enables the -t abbreviated form of the --temp-prefix command line option for dlltool.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5b155b955ab0f4b6db3a5edb049f8e4d5a712f4a

commit 5b155b955ab0f4b6db3a5edb049f8e4d5a712f4a
Author: Stephen Kitt <steve@sk2.org>
Date:   Tue May 12 11:16:03 2015 +0100

    Enables the -t abbreviated form of the --temp-prefix command line option for dlltool.
    
    	* dlltool.c (main): Accept -t as an abbreviation for
    	--temp-prefix.

Diff:
---
 binutils/ChangeLog | 5 +++++
 binutils/dlltool.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 45c0bfd..f026a5a 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2015-05-12  Stephen Kitt  <steve@sk2.org>
+
+	* dlltool.c (main): Accept -t as an abbreviation for
+	--temp-prefix.
+
 2015-05-11  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* dwarf.c (dwarf_regnames_iamcu): New.
diff --git a/binutils/dlltool.c b/binutils/dlltool.c
index be08227..e83052a 100644
--- a/binutils/dlltool.c
+++ b/binutils/dlltool.c
@@ -4091,9 +4091,9 @@ main (int ac, char **av)
 
   while ((c = getopt_long (ac, av,
 #ifdef DLLTOOL_MCORE_ELF
-			   "m:e:l:aD:d:z:b:xp:cCuUkAS:f:nI:vVHhM:L:F:",
+                           "m:e:l:aD:d:z:b:xp:cCuUkAS:t:f:nI:vVHhM:L:F:",
 #else
-			   "m:e:l:y:aD:d:z:b:xp:cCuUkAS:f:nI:vVHh",
+                           "m:e:l:y:aD:d:z:b:xp:cCuUkAS:t:f:nI:vVHh",
 #endif
 			   long_options, 0))
 	 != EOF)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]