aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/alias
Commit message (Collapse)AuthorAgeFilesLines
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * We do want objdirSimon J. Gerraty2013-10-131-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=256421
| * Updated dependenciesSimon J. Gerraty2013-10-131-0/+12
| | | | | | | | Notes: svn path=/projects/bmake/; revision=256419
* | Remove NO_OBJSimon J. Gerraty2015-06-111-1/+0
|/ | | | | | | | | | For meta mode we will want objdirs. Differential Revision: D2748 Reviewed by: brooks imp Notes: svn path=/head/; revision=284255
* Make hash, type and ulimit available via execve().Jilles Tjoelker2010-04-251-0/+3
| | | | | | | | | | | | | | | | | | | | | These are specified by POSIX but are not special builtins, and therefore need 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 2008 standard.) Like most of the POSIX "regular builtin commands", these need to be executed in a shell environment for full functionality, although they may still be of some use outside one. Unlike the POSIX special and regular builtin commands, POSIX does not require these to be found before a PATH search, although that could be an oversight. Like some of the utilities already provided by usr.bin/alias, these may lead to confusing results when invoked from csh(1). Notes: svn path=/head/; revision=207196
* Use the "builtin" shell function to make sure that the requestedColin Percival2005-10-241-1/+1
| | | | | | | | | | | | | | command is handled as a shell function. This avoids the following peculiar 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 Notes: svn path=/head/; revision=151635
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* Mark bits that do not require an object directory as such.Ruslan Ermilov2003-04-011-1/+1
| | | | Notes: svn path=/head/; revision=112940
* Fix installworld.Ollivier Robert2002-07-171-1/+1
| | | | | | | Submitted by: Udo Schweigert <Udo.Schweigert@siemens.com> Notes: svn path=/head/; revision=100249
* A little bit more thought has resulted in a generic script which canGarrett Wollman2002-07-162-0/+23
implement any of the useless POSIX-required ``regular shell builtin'' utilities, saving one frag and one inode each. The script moves to usr.bin/alias which is alphabetically the first of these commands. Notes: svn path=/head/; revision=100200