| History log of /src/usr.bin/lorder |
| Revision | Date | Author | Comments |
| 1.11 | 24-Mar-1997 |
christos | - Makefile cleanups
|
| 1.10 | 18-Oct-1996 |
thorpej | Use ${INSTALL}.
|
| 1.9 | 18-Dec-1995 |
jonathan | Use GNU-binutils friendly lorder script on mips as well as alpha.
|
| 1.8 | 24-Apr-1995 |
cgd | install special version (for GNU nm) on the alpha
|
| 1.7 | 23-Dec-1994 |
jtc | Merged with 4.4lite. Changed to conform to NetBSD's new RCS Id convention.
|
| 1.6 | 22-Dec-1994 |
cgd | specify man pages the new way.
|
| 1.5 | 31-Jul-1993 |
mycroft | Add RCS indentifiers.
|
| 1.4 | 28-Jul-1993 |
cgd | incorporate changes from 0-9-base to 0-9-ALPHA
|
| 1.3 | 26-Apr-1993 |
mycroft | branches: 1.3.2; Oops. Remove some more cruft.
|
| 1.2 | 26-Apr-1993 |
mycroft | Don't make `all' target depend on man page; bsd.prog.mk takes care of this.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 22-Dec-1994 |
jtc | imported from 44lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.3.2.1 | 21-Jul-1993 |
cgd | same thing as the previous, same person as the previous. grr.
|
| 1.8 | 22-Mar-2012 |
wiz | Fix whitespace nits. Suggested by Bug Hunting.
|
| 1.7 | 07-Aug-2003 |
agc | branches: 1.7.56; Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22365, verified by myself.
|
| 1.6 | 19-Oct-1997 |
lukem | fix .Nm usage
|
| 1.5 | 31-Aug-1995 |
jtc | Sync with 4.4lite2
|
| 1.4 | 23-Dec-1994 |
jtc | Merged with 4.4lite. Changed to conform to NetBSD's new RCS Id convention.
|
| 1.3 | 03-Nov-1994 |
jtc | Fix example. Thanks to Brad Parker (brad@stemwinder.fcr.com)
|
| 1.2 | 01-Aug-1993 |
mycroft | Add RCS indentifiers.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.3 | 31-Aug-1995 |
jtc | imported from 44lite2
|
| 1.1.1.2 | 22-Dec-1994 |
jtc | imported from 44lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.7.56.1 | 17-Apr-2012 |
yamt | sync with head
|
| 1.15 | 14-Jan-2007 |
apb | In preparation for making TOOL_LORDER use TOOL_JOIN, TOOL_MKTEMP and TOOL_SED:
* Parameterise JOIN, MKTEMP, NM, SED, and SORT. Previously only NM and MKTEMP were parameterised. * Rewrite some duplicated code using a loop. * More careful quoting of shell variables. * `...` -> $(...)
|
| 1.14 | 27-Jun-2006 |
christos | In preparation for making TOOL_LORDER use TOOL_JOIN, TOOL_MKTEMP and TOOL_SED:
* Parameterise JOIN, MKTEMP, NM, SED, and SORT. Previously only NM and MKTEMP were parameterised. * Rewrite some duplicated code using a loop. * More careful quoting of shell variables. * `...` -> $(...)
|
| 1.13 | 04-Jan-2005 |
fredb | Invoke "join" using POSIX syntax. Should fix a problem cross-building from Linux reported to tech-toolchain by Jesse Off.
|
| 1.12 | 14-Sep-2002 |
thorpej | Get MKTEMP from the environment.
|
| 1.11 | 12-May-2002 |
bjh21 | branches: 1.11.2; Send error messages to stderr rather than stdout.
|
| 1.10 | 28-Sep-2001 |
tv | Use "trap ... 0" instead of "trap ... EXIT", and use numeric signals for "trap ... HUP ..." if the named signals cause the trap statement to fail. This improves backwards compatibility of this script.
|
| 1.9 | 18-Jun-2001 |
lukem | use mktemp(1) as appropriate
|
| 1.8 | 09-Nov-1998 |
mycroft | Convert the evil sed crap to 3 separate invocations of sed. This is way faster over NFS.
|
| 1.7 | 09-Apr-1998 |
fair | per PR#4304 no need to set PATH (especially after testing it!)
|
| 1.6 | 22-Jul-1997 |
cgd | quote ${NM} so that multi-word values work right (for some defn of "right")
|
| 1.5 | 20-Jul-1997 |
cgd | find nm more correctly: if user has set 'NM', use it but expand it to a full path using the user's path, before setting the path used by the script. If it can't be found, try using the standard path used by the script to find it (/bin:/usr/bin), and if it still can't be found, exit. If user hasn't set NM, try to use nm, again searched for via their path, then via the standard path.
|
| 1.4 | 17-Apr-1997 |
thorpej | - Don't bother with two different versions of lorder.sh ... the version for GNU nm(1) works just fine with the NetBSD nm(1). - Allow the program to use for nm(1) to be overridden with the variable $NM.
|
| 1.3 | 24-Apr-1995 |
cgd | delete extra comment line
|
| 1.2 | 23-Dec-1994 |
jtc | Merged with 4.4lite. Changed to conform to NetBSD's new RCS Id convention.
|
| 1.1 | 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.2 | 22-Dec-1994 |
jtc | imported from 44lite
|
| 1.1.1.1 | 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.11.2.1 | 30-Nov-2002 |
he | Pull up revision 1.12 (requested by thorpej in ticket #808): Get MKTEMP from the environment.
|
| 1.4 | 17-Apr-1997 |
thorpej | - Don't bother with two different versions of lorder.sh ... the version for GNU nm(1) works just fine with the NetBSD nm(1). - Allow the program to use for nm(1) to be overridden with the variable $NM.
|
| 1.3 | 20-Dec-1995 |
cgd | don't forget to remove the _symbol_ temp file.
|
| 1.2 | 18-Dec-1995 |
jonathan | Eliminate separate invocation of nm for each .o file on command line. Add check for dependencies introduced by symbol types 'G' (mips gp-relative constant pool) and 'R' (readonly data).
|
| 1.1 | 24-Apr-1995 |
cgd | install special version (for GNU nm) on the alpha
|