aboutsummaryrefslogtreecommitdiff
path: root/tools/install.sh
Commit message (Collapse)AuthorAgeFilesLines
* Fix handling -U. It does not take any arguments.Brad Davis2017-11-271-3/+3
| | | | | | | Approved by: will Notes: svn path=/head/; revision=326239
* Use -n to ln(1) which is compatible with GNU ln(1).Bryan Drewery2015-11-161-1/+1
| | | | | | | Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=290960
* Use = not == in test arguments.Brooks Davis2013-01-241-1/+1
| | | | | | | Submitted by: Christoph Mallon <christoph.mallon@gmx.de> Notes: svn path=/head/; revision=245893
* Implement the -l option using ln(1) to facilitate boostrapping.Brooks Davis2013-01-211-4/+20
| | | | | | | | | | | Ignore the new options -D, -h, -T, and -U. Adjust -M support to ignore an argument. Sponsored by: DARPA, AFRL Reviewed by: ian, ray, rpaulo Notes: svn path=/head/; revision=245751
* Teach tools/install.sh the -d directory mode.Ulrich Spörlein2011-02-221-2/+18
| | | | | | | | | | | Sync up with flags understood by install(1) [1], and make install(1)'s usage output not hide the clearly documented -M flag. PR: misc/154739 [1] Submitted by: arundel Notes: svn path=/head/; revision=218940
* Arguments to options aren't necessarily separated with whitespace.Ruslan Ermilov2004-07-071-0/+1
| | | | | | | Noticed by: harti Notes: svn path=/head/; revision=131737
* From what I can tell, install.sh supported all of the install(1)Ruslan Ermilov2004-02-061-4/+3
| | | | | | | | | | | options since revision 1.2, so removed the XXX comment now. Fixed bogus test(1) expression that would be evaluated as a null string test if script is run without arguments, compacted option lists. Notes: svn path=/head/; revision=125514
* Fix typo in the BSD copyright: s/withough/without/Jens Schweikhardt2002-06-021-1/+1
| | | | | | | | Spotted and suggested by: des MFC after: 3 weeks Notes: svn path=/head/; revision=97748
* Added support for all new install(1) options.Ruslan Ermilov2001-05-281-3/+3
| | | | | | | Removed -c from the actual call as -p implies "copy". Notes: svn path=/head/; revision=77346
* Don't use -C internally. Use -c. For some reason files are not copiedMarcel Moolenaar1999-12-151-1/+1
| | | | | | | with -C, although they should. Notes: svn path=/head/; revision=54648
* Use install -C -p instead of cp -p.Marcel Moolenaar1999-12-101-2/+2
| | | | | | | Pointed out by: bde Notes: svn path=/head/; revision=54389
* install(1) lookalike that can be used during a build. Any optionsMarcel Moolenaar1999-12-081-0/+42
are ignored and the remaining is passed on to cp(1). This allows a build to be run as non-root without forcing any user/group setting and also prevents setting any file flags. This may not be the right place for buildtools. Notes: svn path=/head/; revision=54310