summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a standard DIAGNOSTICS section.tjr2004-08-041-1/+3
|
* Add ENVIRONMENT and DIAGNOSTICS sections.tjr2004-08-041-1/+12
|
* In next(), ensure that 'done' is set in the case when a file cannottjr2004-08-041-1/+2
| | | | | be opened, to avoid trying to read standard input after already closing it, which resulted in EBADF errors.
* Correct the description of the MFLAGS and .MAKEFLAGS variables. Addharti2004-08-031-6/+16
| | | | | | the MFLAGS target. Document that variable assignments from the MAKEFLAGS environment variable and the .MAKEFLAGS and .MFLAGS target have the same precedence as command line variable assignments.
* Put variable assignments from the command line into the MAKEFLAGSharti2004-08-034-32/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | variable as required by POSIX. This causes such variables to be pushed into all sub-makes called by the make (except when the MAKEFLAGS variable is explicitely changed in the sub-make's environment). This makes them also mostly un-overrideable in sub-makes except on the sub-make's command line. Therefor specifying 'make CC=icc' will cause icc to be used as C compiler in all sub-makes no matter what the Makefiles itself try to do to the CC variable. This patch also corrects the handling of the MFLAGS variable. MFLAGS contains all the command line flags but not the command line variable assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). Makefiles can use MFLAGS for their own purposes given that they do not except MFLAGS to be undefined at the beginning and that they don't evaluate .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, but it is unfortunately heavily used by the X makefiles. This has been extensively tested by port builds (thanks to portmgr), new worlds and kernels. PR: standards/57295 (1st part above) Submitted by: James E. Flemer <jflemer@alum.rpi.edu> Approved by: portmgr Obtained from: NetBSD (1st part above) MFC after: 4 weeks
* Make the SIGCHLD handler static and declare its argumentharti2004-08-031-2/+2
| | | | as unused, so that make can be compiled with WARNS=3 again.
* GNU and POSIX disagree about -o and -l.kientzle2004-08-032-22/+70
| | | | | | | | | | | | For -l, upset everyone by breaking it. Specifically, -l now produces a lengthy error message that suggests --check-links (POSIX -l) or --one-file-system (GNU -l) instead. However, if POSIXLY_CORRECT is set, use the POSIX interpretation. For -o, please everyone by making it work both ways: * -xo uses POSIX behavior * -co uses "almost GNU" behavior (as close as we can get until libarchive implements a true V7 tar format)
* Remove la_LN.* from the list of bogus locales. They're incomplete, buttjr2004-08-021-1/+1
| | | | still potentially useful.
* Exclude bogus la_LN.* and UTF-8 locales from the output of locale -atjr2004-08-021-1/+11
| | | | to discourage people from using them.
* Add cross-reference to fmt(1) and a fairly standard ENVIRONMENT section.tjr2004-08-021-2/+12
|
* Cross-reference fold(1).tjr2004-08-021-0/+1
|
* Add support for multibyte characters.tjr2004-08-022-57/+94
|
* Document incorrect handling of multibyte characters with -I and -J options.tjr2004-08-021-1/+10
|
* This commit was generated by cvs2svn to compensate for changes in r132977,gad2004-08-013-0/+287
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of a BSD-licensed version of `patch', which will eventuallygad2004-08-0114-2807/+4176
| | | | | | | | | | | | | | | | | | | | replace the version we currently have in src/gnu/usr.bin/patch/. Among other things, this version includes a --posix option for strict POSIX conformance. This version is the current source from OpenBSD as of today. It is their 3.5-release, plus a few updates to patch.c and pch.c that they made about three weeks ago.
| * Import OpenBSD m4(1) as of April 26. Mostly ANSIfication changes.jmallett2002-05-018-245/+103
| |
| * Import OpenBSD m4 as of today.jmallett2002-04-181-104/+304
| |
* | Correct the explanation of the -X option.kientzle2004-08-011-3/+5
| | | | | | | | Thanks to: Pav Lucistnik
* | Comment some of the 'io' functions.alfred2004-08-011-0/+29
| |
* | Check for read errors.tjr2004-07-311-0/+2
| |
* | Add standard DIAGNOSTICS section.tjr2004-07-311-0/+2
| |
* | Add support for multibyte characters, loosely based on Bruno Haible'stjr2004-07-312-25/+57
| | | | | | | | work in the util-linux packages, but with some minor fixes.
* | Fix some particularly bad style(9) violations.tjr2004-07-311-60/+58
| |
* | Check for read errors.tjr2004-07-301-0/+2
| |
* | Document the behaviour of the "-o file" option when "file" is a directorycperciva2004-07-301-0/+4
| | | | | | | | | | | | (downloaded file(s) are created inside the directory). MFC after: 3 days
* | Improve portability to FreeBSD 4.kientzle2004-07-301-0/+6
| | | | | | | | Thanks to: Barry Bouwsma
* | Fix comment.kientzle2004-07-301-1/+1
| | | | | | | | Thanks to: Johan Karlsson
* | Document incorrect handling of multibyte characters.tjr2004-07-301-1/+3
| |
* | Stop the practice of installing external headers into GCC-specific directory.kan2004-07-301-1/+1
| | | | | | | | Install FlexLexer.h into /usr/include directly.
* | Add support for multibyte characters, based on Bruno Haible's worktjr2004-07-292-56/+81
| | | | | | | | in the util-linux package.
* | The signal number has to be less than NSIG strictly.maxim2004-07-291-1/+1
| | | | | | | | | | | | PR: misc/69768 Submitted by: bronek MFC after: 1 week
* | Bump the date in .Dd for the recent '+' flag commit.harti2004-07-291-1/+1
| | | | | | | | Requested by: ru
* | Implement POSIX's '+' flag for command lines. This flag causes a lineharti2004-07-295-32/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to be executed even when -n is given on the command line to make. This is very handy for calls to submakes. This is slightly changed from the original patch as obtained from NetBSD. The NetBSD variant prints lines which have both '+' and '@' when -n is specified. The commited version always obeys '@'. Bump MAKE_VERSION so Makefiles can use this conditionally. PR: standards/66357 (partly) Submitted by: Mark Baushke <mdb@juniper.net> Obtained from: NetBSD
* | Add support for multibyte characters.tjr2004-07-292-42/+78
| |
* | Add support for multibyte characters. The output is questionable when atjr2004-07-292-10/+11
| | | | | | | | | | character straddles the "start" or "stop" columns, but this should be quite uncommon.
* | Add a cross-reference to colcrt(1).tjr2004-07-291-0/+1
| |
* | Sort #include directives and remove one duplicate that crept in to thetjr2004-07-291-2/+1
| | | | | | | | previous commit.
* | Add support for multibyte characters, loosely based on Bruno Haible'stjr2004-07-292-18/+41
| | | | | | | | work in the util-linux package.
* | Change the 'no terminating ";"' error message to 'no terminating ";" or "+"'tjr2004-07-291-1/+1
| | | | | | | | since + is also a valid way to terminate -exec.
* | Remove partial support for building this on NetBSD.tjr2004-07-293-10/+0
| |
* | Now that fnmatch() supports multibyte characters, find does too; removetjr2004-07-291-5/+1
| | | | | | | | entry from BUGS section that said otherwise.
* | Print link level address on vlan interfaces using ether_ntoa(), to makeglebius2004-07-281-0/+1
| | | | | | | | | | | | | | | | | | | | output on bare ethernet and vlan interfaces the same. PR: bin/69674 Submitted by: Pawel Malachowski <pawmal-posting@freebsd.lublin.pl> Reviewed by: ru Approved by: julian (mentor) MFC after: 1 week
* | Use the length modifier 'll' instead of 'q' to print long longs.stefanf2004-07-283-8/+8
| |
* | Remove local malloc prototypes, which are incorrect and conflict withkan2004-07-284-7/+0
| | | | | | | | both GCC builtin and system declared ones.
* | Do not predeclare __inline functions, this makes no sense and generateskan2004-07-281-2/+2
| | | | | | | | a warning with gcc 3.4.x.
* | Start new sentence on new line.cperciva2004-07-271-1/+2
| | | | | | | | Pointed out by: simon
* | Add a BUGS entry pointing out that -mindepth and -maxdepth are globalcperciva2004-07-271-0/+7
| | | | | | | | | | | | options even though they look like primaries. (This is already documented in the options themselves, but is sufficiently astonishing that I think it deserves a BUGS entry as well.)
* | Merge the "multibyte not supported" BUG into the pre-existing BUGScperciva2004-07-272-15/+15
| | | | | | | | | | | | | | | | | | section. Move the HISTORY section to place it before BUGS rather than after BUGS, in order to minimize the chance of this error being reproduced in the future. (Both mdoc(7) and 63% of manual pages have these sections listed in this order.)
* | Don't strip trailing linear whitespace from passwords.des2004-07-271-5/+5
| | | | | | | | MFC after: 2 weeks
* | Style nits.des2004-07-271-5/+4
| |
OpenPOWER on IntegriCloud