svn commit: r221589 - stable/8/usr.bin/ar
Kai Wang
kaiw at FreeBSD.org
Sat May 7 10:31:35 UTC 2011
Author: kaiw
Date: Sat May 7 10:31:34 2011
New Revision: 221589
URL: http://svn.freebsd.org/changeset/base/221589
Log:
MFC r216014:
Add option -D for ranlib(1). When -D is speicified, ranlib(1) will generate
a deterministic archive symbol table (i.e. timestamp for the symbol table
member header is set to 0).
Submitted by: Erik Cederstrand
Modified:
stable/8/usr.bin/ar/ar.1
stable/8/usr.bin/ar/ar.c
Directory Properties:
stable/8/usr.bin/ar/ (props changed)
Modified: stable/8/usr.bin/ar/ar.1
==============================================================================
--- stable/8/usr.bin/ar/ar.1 Sat May 7 10:27:23 2011 (r221588)
+++ stable/8/usr.bin/ar/ar.1 Sat May 7 10:31:34 2011 (r221589)
@@ -92,6 +92,7 @@
.Ar archive
.Op Ar files ...
.Nm ranlib
+.Op Fl D
.Ar archive ...
.Sh DESCRIPTION
The
Modified: stable/8/usr.bin/ar/ar.c
==============================================================================
--- stable/8/usr.bin/ar/ar.c Sat May 7 10:27:23 2011 (r221588)
+++ stable/8/usr.bin/ar/ar.c Sat May 7 10:31:34 2011 (r221589)
@@ -113,12 +113,15 @@ main(int argc, char **argv)
len = strlen(bsdar->progname);
if (len >= strlen("ranlib") &&
strcmp(bsdar->progname + len - strlen("ranlib"), "ranlib") == 0) {
- while ((opt = getopt_long(argc, argv, "tV", longopts,
+ while ((opt = getopt_long(argc, argv, "tDV", longopts,
NULL)) != -1) {
switch(opt) {
case 't':
/* Ignored. */
break;
+ case 'D':
+ bsdar->options |= AR_D;
+ break;
case 'V':
ranlib_version();
break;
More information about the svn-src-all
mailing list