aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/cron/crontab/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* 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
* package: move cron into its own packageLexi Winter2024-04-231-0/+1
| | | | | Reviewed by: imp, manu, Mina Galic Pull Request: https://github.com/freebsd/freebsd-src/pull/1172
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* usr.sbin: normalize paths using SRCTOP-relative paths or :H when possibleEnji Cooper2017-03-041-1/+1
| | | | | | | | | | This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314659
* Convert usr.sbin to LIBADDBaptiste Daroussin2014-11-251-2/+1
| | | | | | | Reduce overlinking Notes: svn path=/head/; revision=275054
* Revert r267233 for now. PIE support needs to be reworked.Bryan Drewery2014-08-191-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | 1. 50+% of NO_PIE use is fixed by adding -fPIC to INTERNALLIB and other build-only utility libraries. 2. Another 40% is fixed by generating _pic.a variants of various libraries. 3. Some of the NO_PIE use is a bit absurd as it is disabling PIE (and ASLR) where it never would work anyhow, such as csu or loader. This suggests there may be better ways of adding support to the tree. Many of these cases can be fixed such that -fPIE will work but there is really no reason to have it in those cases. 4. Some of the uses are working around hacks done to some Makefiles that are really building libraries but have been using bsd.prog.mk because the code is cleaner. Had they been using bsd.lib.mk then NO_PIE would not have been needed. We likely do want to enable PIE by default (opt-out) for non-tree consumers (such as ports). For in-tree though we probably want to only enable PIE (opt-in) for common attack targets such as remote service daemons and setuid utilities. This is also a great performance compromise since ASLR is expected to reduce performance. As such it does not make sense to enable it in all utilities such as ls(1) that have little benefit to having it enabled. Reported by: kib Notes: svn path=/head/; revision=270168
* In preparation for ASLR [1] support add WITH_PIE to support building with -fPIE.Bryan Drewery2014-06-081-0/+2
| | | | | | | | | | | | | | | | | | | This is currently an opt-in build flag. Once ASLR support is ready and stable it should changed to opt-out and be enabled by default along with ASLR. Each application Makefile uses opt-out to ensure that ASLR will be enabled by default in new directories when the system is compiled with PIE/ASLR. [2] Mark known build failures as NO_PIE for now. The only known runtime failure was rtld. [1] http://www.bsdcan.org/2014/schedule/events/452.en.html Submitted by: Shawn Webb <lattera@gmail.com> Discussed between: des@ and Shawn Webb [2] Notes: svn path=/head/; revision=267233
* Use WARNS?= instead of WARNS=Matteo Riondato2008-11-181-1/+1
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=185040
* Make usr.sbin/cron/crontab and usr.sbin/cron/lib WARNS=3 cleanMatteo Riondato2008-11-101-0/+2
| | | | | | | | | Tested with: make universe MFC after: 3 days Notes: svn path=/head/; revision=184809
* Introduce the PRECIOUSPROG knob in bsd.prog.mk, similarRuslan Ermilov2004-11-031-1/+1
| | | | | | | | | | | to PRECIOUSLIB from bsd.lib.mk. The side effect of this is making installing the world under jail(8) possible by using another knob, NOFSCHG. Reviewed by: oliver Notes: svn path=/head/; revision=137164
* Ensure that edits that do not span a clock tick are not lost.Diomidis Spinellis2004-09-141-2/+2
| | | | | | | | | PR: bin/22612 MT5: 4 weeks MT4: 2 weeks Notes: svn path=/head/; revision=135242
* Perform a major cleanup of the usr.sbin Makefiles.David E. O'Brien2001-07-201-5/+7
| | | | | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before. Notes: svn path=/head/; revision=80029
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-2/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74816
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* Use `foo/bar.a' instead of `-Lfoo -lbar' for linking to static internalBruce Evans1998-03-071-14/+4
| | | | | | | | | | | | | libraries so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Get the default BINDIR correctly (by including ../Makefile.inc recursively. Override the default it it is wrong. Don't override defaults when the defaults are correct. Notes: svn path=/head/; revision=34160
* Don't use LDDESTDIR. Just put the -L arg in LDADD.Bruce Evans1997-12-171-7/+6
| | | | Notes: svn path=/head/; revision=31812
* Log run-time parsing errors nowAndrey A. Chernov1997-11-021-0/+3
| | | | | | | | | | | | | | | Use getpwnam before getpwuid since two users with same uids can exists (affects new login classes code only) The same fixes as in inetd: by default run `system crontab things' with daemon login class now, not restrict them to user class breaking compatibility with old way (so-called nobody limits problem) Implement user[:group][/login-class] syntax in system crontab for more flexible control (the same as in inetd) Notes: svn path=/head/; revision=30895
* Bring in my changes for removing the pestilent obj links (unless youJordan K. Hubbard1996-06-241-3/+3
| | | | | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. Notes: svn path=/head/; revision=16663
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-1/+1
| | | | Notes: svn path=/head/; revision=8857
* Make /usr/bin/crontab install setuid root. (doesn't work otherwise)Scott Mace1994-11-061-0/+4
| | | | | | | | The distributed makefile in the package installs it setuid root.. Reviewed by: jkh Notes: svn path=/head/; revision=4189
* Use LDDESTDIR and DPADD more consistently with what Bruce suggests..Jordan K. Hubbard1994-08-291-2/+6
| | | | | | | Submitted by: jkh Notes: svn path=/head/; revision=2394
* Make the LDADD stuff work properly with obj dirs. Whoops.Jordan K. Hubbard1994-08-291-1/+6
| | | | | | | Submitted by: jkh Notes: svn path=/head/; revision=2387
* Paul Vixie's cron, version 3.0. Munged into bmake format. If this goesJordan K. Hubbard1994-08-271-0/+10
well, expect our two seperate directories for cron and crontab to go away shortly. Submitted by: jkh Notes: svn path=/cvs2svn/branches/cron/; revision=2311