Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Fix typo when deregistering the VLAN unconfig event handlerSubmitted by: Masao Uebayashi <[email protected]>MFC after: 3 days
dirdeps.mk now sets DEP_RELDIR
We do want objdir
Updated dependencies
Make hash, type and ulimit available via execve().These are specified by POSIX but are not special builtins, and thereforeneed to be available via execve() and utilities like time, nohup, xargs.(
Make hash, type and ulimit available via execve().These are specified by POSIX but are not special builtins, and thereforeneed to be available via execve() and utilities like time, nohup, xargs.(Note that hash was moved from the XSI option to the base in the 2008standard.)Like most of the POSIX "regular builtin commands", these need to be executedin a shell environment for full functionality, although they may still be ofsome use outside one.Unlike the POSIX special and regular builtin commands, POSIX does notrequire these to be found before a PATH search, although that could be anoversight.Like some of the utilities already provided by usr.bin/alias, these may leadto confusing results when invoked from csh(1).
show more ...
Use the "builtin" shell function to make sure that the requestedcommand is handled as a shell function. This avoids the followingpeculiar behaviour when /usr/bin is on a case-insensitive filesyste
Use the "builtin" shell function to make sure that the requestedcommand is handled as a shell function. This avoids the followingpeculiar behaviour when /usr/bin is on a case-insensitive filesystem: # READ foo(... long pause, depending upon the amount of swap space available ...) sh: Resource temporarily unavailable.Reported by: I can't remember; someone on IRC.MFC after: 1 week
Start the dreaded NOFOO -> NO_FOO conversion.OK'ed by: core
Mark bits that do not require an object directory as such.
Fix installworld.Submitted by: Udo Schweigert <[email protected]>
A little bit more thought has resulted in a generic script which canimplement any of the useless POSIX-required ``regular shell builtin''utilities, saving one frag and one inode each. The script m
A little bit more thought has resulted in a generic script which canimplement any of the useless POSIX-required ``regular shell builtin''utilities, saving one frag and one inode each. The script moves tousr.bin/alias which is alphabetically the first of these commands.