cvs commit: src/usr.bin/ar Makefile acplex.l acpyacc.y ar.c ar.h write.c

Kai Wang kaiw at FreeBSD.org
Sat Sep 20 22:10:34 UTC 2008


kaiw        2008-09-20 22:10:10 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/ar           Makefile ar.c ar.h write.c 
  Added files:
    usr.bin/ar           acplex.l acpyacc.y 
  Log:
  SVN rev 183218 on 2008-09-20 22:10:10Z by kaiw
  
  Add support for option "-M", which is used to operate ar(1) in a
  script mode like the MRI(Microtec Research Inc.) "librarian" program.
  
  Originally this option is provided by Binutils ar(1) to ease the
  transition for developers who are used to writing "librarian" scripts.
  
  We added this option to BSD ar(1) because:
  
  1. Further improve the compatibility with Binutils ar(1).
  2. There are still a few software using this -M option. (at least one
  in our ports collection)
  
  Suggested by:   rink & erwin
  
  Revision  Changes    Path
  1.21      +1 -1      src/usr.bin/ar/Makefile
  1.1       +78 -0     src/usr.bin/ar/acplex.l (new)
  1.1       +662 -0    src/usr.bin/ar/acpyacc.y (new)
  1.19      +10 -2     src/usr.bin/ar/ar.c
  1.4       +6 -3      src/usr.bin/ar/ar.h
  1.6       +107 -41   src/usr.bin/ar/write.c


More information about the cvs-src mailing list