diff options
author | Roland McGrath <roland@gnu.org> | 2013-01-07 17:40:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2013-01-07 17:40:59 +0000 |
commit | 955d0b3bd758ec9759a6fed1e5121f2a3f9e5f54 (patch) | |
tree | f20730180b886864c1737bf1ec02084640fdeb40 /binutils/ar.c | |
parent | 45a466b578083a05f1138eff9232254b1a30f683 (diff) | |
download | binutils-gdb-955d0b3bd758ec9759a6fed1e5121f2a3f9e5f54.tar.gz |
binutils/
* objcopy.c (deterministic): Make int rather than bfd_boolean,
initialize to -1.
(strip_options, copy_options): Add -U/--disable-deterministic-archives.
(default_deterministic): New function.
(strip_main, copy_main): Handle -U. Call default_deterministic.
(copy_usage, strip_usage): Describe -U. Cite whether -D or -U is
the default based on DEFAULT_AR_DETERMINISTIC.
* doc/binutils.texi (objcopy, strip): Describe -U and effect of
configure options on -D.
* ar.c (default_deterministic): Comment fix.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index aceb9d13843..0aa1ba3220b 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -1,6 +1,6 @@ /* ar.c - Archive modify and extract. Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 + 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. This file is part of GNU Binutils. @@ -575,7 +575,7 @@ decode_options (int argc, char **argv) return &argv[optind]; } -/* If neither -D nor -U was not specified explicitly, +/* If neither -D nor -U was specified explicitly, then use the configured default. */ static void default_deterministic (void) |