aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/strip
Commit message (Collapse)AuthorAgeFilesLines
* Finish the deorbital burn of the i386-only a.out toolchain.David E. O'Brien2003-06-274-436/+0
| | | | Notes: svn path=/head/; revision=116903
* Drop support for COPY, -c has been the default mode of install(1)Ruslan Ermilov2002-07-291-1/+1
| | | | | | | | | for a long time now. Approved by: bde Notes: svn path=/head/; revision=100872
* Do not override the `install' target.Ruslan Ermilov2002-04-291-1/+1
| | | | Notes: svn path=/head/; revision=95716
* Use `The .Nm utility'Philippe Charnier2002-04-201-2/+3
| | | | Notes: svn path=/head/; revision=95124
* remove __PWarner Losh2002-03-221-4/+4
| | | | Notes: svn path=/head/; revision=92922
* Remove to-be-default WARNS?=2Mark Murray2001-12-121-1/+0
| | | | Notes: svn path=/head/; revision=87769
* Strip seems to be warns clean on i386 and alpha.David Malone2001-12-031-0/+1
| | | | Notes: svn path=/head/; revision=87299
* Revert previous commit; it broke large file support on platforms thatDima Dorfman2001-07-021-1/+1
| | | | | | | | | had it to begin with (e.g., the Alpha). Submitted by: bde Notes: svn path=/head/; revision=79112
* Silence a warning on the Alpha.Dima Dorfman2001-06-301-1/+1
| | | | Notes: svn path=/head/; revision=79009
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+2
| | | | Notes: svn path=/head/; revision=74848
* $Id$ -> $FreeBSD$Peter Wemm1999-08-283-3/+3
| | | | Notes: svn path=/head/; revision=50477
* Install the legacy man file in section 1aout.John Birrell1998-09-071-1/+1
| | | | Notes: svn path=/head/; revision=38899
* "./strip maybe_stripped" doesn't work too well if maybe_stripped is anPeter Wemm1998-06-121-1/+1
| | | | | | | elf executable.. Notes: svn path=/head/; revision=36925
* ELF preparation step 1:Søren Schmidt1998-05-251-0/+1
| | | | | | | | | | | | | | | | | | Move our old a.out utils to /usr/libexec/aout. Enable binutils and put the utils in /usr/libexec/elf Enable objformat, a little helper program that calls the right utils based on /etc/objformat and $OBJFORMAT. This will enable the ELF generating tools. Remember that this is only step one, the system is still compiled and run in a.out format ONLY. Problem left to solve: The BSD manpages wins over the GNU equivalents as the are installed last. We need to distinguish between the manpages somehow... Notes: svn path=/head/; revision=36374
* Use err(3) instead of local redefinition.Philippe Charnier1997-08-123-65/+53
| | | | Notes: svn path=/head/; revision=28098
* compare return value from getopt against -1 rather than EOF, per the finalWarner Losh1997-03-291-2/+2
| | | | | | | posix standard on the topic. Notes: svn path=/head/; revision=24360
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-223-3/+3
| | | | Notes: svn path=/head/; revision=23012
* Sweep through the tree fixing mmap() usage:Alexander Langer1997-01-161-1/+1
| | | | | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde Notes: svn path=/head/; revision=21786
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-143-3/+3
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* [HISTORY] command appeared in Version 1 AT&T UNIXWolfram Schneider1996-08-292-2/+4
| | | | | | | Obtained from: A Quarter Century of UNIX, Peter H. Salus, page 41 Notes: svn path=/head/; revision=17891
* Trivial bugfix which occurs when DEBUG_FLAGS is defined. If DEBUG_FLAGSNate Williams1996-06-271-0/+2
| | | | | | | | is defined, STRIP is undefined and causes the Makefile to blow up, so make sure STRIP is defined if you plan on using it. Notes: svn path=/head/; revision=16808
* Add the -x option to the usage string.Mike Pritchard1996-03-111-2/+2
| | | | | | | Submitted by: Philippe Charnier <charnier@lirmm.fr> Notes: svn path=/head/; revision=14521
* Add the maybe_stripped to a CLEANFILES target to get a clean obj directoryAndreas Schulz1995-08-011-0/+1
| | | | | | | after a clean or cleandir. Notes: svn path=/head/; revision=9844
* Build a stripped copy of `strip' so that it doesn't have to be strippedBruce Evans1995-07-241-3/+11
| | | | | | | | | | | | | | at install time. This will allow `install -C' to avoid replacing the installed copy if the new copy is the same. `install -C' would actually work right if `strip' is already installed, but the Makefile doesn't know that and has to work for plain `install'. Stripping should be done by default at link time, but complications would still be required for installing `strip' in case the default is overridden. Notes: svn path=/head/; revision=9693
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-3/+3
| | | | Notes: svn path=/head/; revision=8874
* strip not close files on errorAndrey A. Chernov1994-12-181-1/+5
| | | | | | | Submitted by: jc@irbs.com Notes: svn path=/head/; revision=5140
* Define MAN1 man page variable.Steven Wallace1994-09-291-3/+3
| | | | | | | | Get rid of install: and instead add an afterinstall: so that man page is properly installed Notes: svn path=/head/; revision=3212
* Don't exit early if malloc() fails (never exit early now; the `fatal'Bruce Evans1994-09-081-10/+12
| | | | | | | | | | flag to err() is useless). The following files might be much smaller so malloc() might work for them. Clean up formatting of the -x change. Notes: svn path=/head/; revision=2581
* - Bring in -x option changes from 1.xGeoff Rehmet1994-09-033-6/+25
| | | | | | | | - eval -> err_val : slightly more meaningful (eval is what you do in Linda ;-)) Submitted by: Geoff. Notes: svn path=/head/; revision=2469
* Install with group BINGRP, not BINOWN.Bruce Evans1994-08-201-1/+1
| | | | Notes: svn path=/head/; revision=2143
* Cleanup so that make install can run, many install: maninstall changedRodney W. Grimes1994-05-301-2/+1
| | | | | | | to just install:, sperious targets and CLEANFILES removed. Notes: svn path=/head/; revision=1637
* BSD 4.4 Lite Usr.bin SourcesRodney W. Grimes1994-05-274-0/+408
Notes: svn path=/cvs2svn/branches/CHRISTOS/; revision=1590