Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 1 | -4/+8 |
| | |||||
* | english(4) police. | schweikh | 2002-12-27 | 1 | -1/+1 |
| | |||||
* | Use `The .Nm utility' | charnier | 2002-04-20 | 1 | -2/+3 |
| | |||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -1/+1 |
| | |||||
* | mdoc(7) police: removed HISTORY info from the .Os call. | ru | 2001-07-10 | 1 | -1/+1 |
| | |||||
* | beforeinstall -> SCRIPTS. | ru | 2001-04-07 | 1 | -5/+3 |
| | |||||
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -1/+2 |
| | |||||
* | mdoc(7) police: use the default ``file ...'' feature of the .Ar macro. | ru | 2001-02-13 | 1 | -1/+1 |
| | |||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-19 | 1 | -0/+1 |
| | |||||
* | mdoc(7) police: use the new features of the Nm macro. | ru | 2000-11-20 | 1 | -1/+1 |
| | |||||
* | Capitalization errors: | chris | 1999-09-25 | 1 | -2/+2 |
| | | | | | * Gcc -> gcc * Gnu -> GNU | ||||
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 2 | -2/+2 |
| | |||||
* | Add $Id$, to make it simpler for members of the translation teams to | nik | 1999-07-12 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde | ||||
* | Remove -n for ignoring system headers. Instead add finer grain shell | obrien | 1998-09-13 | 2 | -17/+25 |
| | | | | | | macros and document them. Prompted by: bde | ||||
* | revert back to rev 1.5 | obrien | 1998-09-04 | 1 | -1/+0 |
| | |||||
* | Cut-n-paste fub. | obrien | 1998-09-02 | 1 | -2/+2 |
| | | | | Noticed by: bde | ||||
* | Add option `-n', causing system headers not to be included in dependacy | obrien | 1998-08-29 | 3 | -3/+17 |
| | | | | | | lists. This is needed when using a non-stock compiler. | ||||
* | When exiting on SIGINT, exit with signal status | cracauer | 1998-08-24 | 2 | -3/+3 |
| | |||||
* | Remove the PATH setting. | jb | 1998-08-17 | 1 | -3/+1 |
| | |||||
* | .Nm mkdep -> .Nm. | charnier | 1997-07-24 | 1 | -3/+3 |
| | |||||
* | Revert $FreeBSD$ to $Id$ | peter | 1997-02-22 | 1 | -1/+1 |
| | |||||
* | Bye Bye. | wosch | 1997-02-14 | 3 | -390/+0 |
| | |||||
* | Print error messages to stderr, not to stdout. | bde | 1997-02-13 | 1 | -2/+2 |
| | | | | | Fixed usage message to match reality (-a was missing) and man page (arg names were spelled differently). | ||||
* | ${DESTDIR}/usr/bin -> ${DESTDIR}${BINDIR} | wosch | 1997-02-02 | 1 | -1/+1 |
| | |||||
* | Store temp files in current directory instead /tmp. The current | wosch | 1997-01-27 | 1 | -1/+1 |
| | | | | | directory is usually not world writable, this avoid security problems due the evil Berkeleian symlinks. | ||||
* | Make the long-awaited change from $Id$ to $FreeBSD$ | jkh | 1997-01-14 | 1 | -1/+1 |
| | | | | | | | | 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. | ||||
* | $@ -> "$@", now ``mkdep "foo bar".c'' works. | wosch | 1996-10-27 | 1 | -5/+6 |
| | | | | | | | Do not exit with status 0 if mkdep(1) cannot create output, e.g. if .depend is not writable or the FS is readonly mounted. Store arguments as comments for debugging purpose. | ||||
* | $* -> $@ | wosch | 1996-04-05 | 1 | -18/+19 |
| | | | | check exit code from $MKDEP_CPP, not sed(1) | ||||
* | remove /usr/ucb from path | wosch | 1996-03-12 | 2 | -8/+1 |
| | | | | cleanup Makefile | ||||
* | Change `install' to `${INSTALL}' so that default install flags can be | bde | 1995-07-25 | 1 | -2/+2 |
| | | | | specified in the top level Makefiles. | ||||
* | Fix -p option sed script so that it really does change program.o: into | rgrimes | 1994-10-03 | 1 | -1/+1 |
| | | | | | program:. There where extra spaces our gcc does not emit causing problems. Obtained from: FreeBSD 1.1.5.1 | ||||
* | Use cc -E instead of cpp for the preprocessor by default. cc -E is | bde | 1994-08-30 | 1 | -2/+7 |
| | | | | | | | | | | | | | | | | correct for C sources that are compiled by cc, while cpp (/usr/bin/cpp) is bogus since it invokes /usr/libexec/cpp with different flags. 1.1.5 uses plain cc. This should be equivalent after -M is added, but cc -M foo.s is completely broken (it invokes the assembler) while cc -E -M foo.s just does nothing instead of generating a foo.o: foo.s dependency. IF $MKDEP_CPP is set, use it as the cpp instead of cc -E. Assembler sources that are preprocessed using cpp directly should be mkdep'ed with MKDEP_CPP=cpp. Such sources shouldn't exist but we still have lots. foo.S should be compiled by cc -traditional (cc will invoke the preprocessor) and foo.s should be compiled by cc (cc won't invoke the preprocessor). | ||||
* | Change cc back to cpp for now. | paul | 1994-08-21 | 1 | -2/+2 |
| | | | | | Reviewed by: Submitted by: | ||||
* | Changed cpp to cc since cpp is hidden away in /usr/libexec | paul | 1994-08-20 | 1 | -2/+2 |
| | | | | | Reviewed by: Submitted by: | ||||
* | More merry makefile munging for man page compatability. | wollman | 1994-08-05 | 1 | -1/+1 |
| | |||||
* | BSD 4.4 Lite Usr.bin Sources | rgrimes | 1994-05-27 | 7 | -0/+713 |