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.
This commit is contained in:
Stephen Kitt 2015-05-12 11:16:03 +01:00 committed by Nick Clifton
parent fb4048adf7
commit 5b155b955a
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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)