aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/alias/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* usr.bin: Remove intrinsic utilitiesDag-Erling Smørgrav2025-12-191-19/+0
| | | | | | | | | | | | | | | | | These utilities can only function correctly if implemented as shell builtins and exist only because POSIX previously required them. As of POSIX 2024, they have all been reclassified as intrinsic utilities and are no longer required to exist in PATH. We can therefore retire them. Cf. XBD 1.7, XRAT C.1.8, Austin Group bug 854. Note that kill(1) is also considered an intrinsic utility (because only the shell can interpret job IDs correctly), but we have a working standalone implementation, which we will keep. PR: 291686 Relnotes: yes Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D54239
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* 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
* 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-161-0/+19
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