diff options
author | Mariusz Zaborski <oshogbo@FreeBSD.org> | 2019-06-05 22:55:00 +0000 |
---|---|---|
committer | Mariusz Zaborski <oshogbo@FreeBSD.org> | 2019-06-05 22:55:00 +0000 |
commit | d32f14190b203ae8af35cc1c1453b8e938ec2889 (patch) | |
tree | 15a8113f160c4f95e0b44e73adefdf15fd2c2c3d | |
parent | 9190144fbf37126282edf4b72fc5e916f2856ea9 (diff) | |
download | src-d32f14190b203ae8af35cc1c1453b8e938ec2889.tar.gz src-d32f14190b203ae8af35cc1c1453b8e938ec2889.zip |
tail: disable capsicum in rescue mode
All rescue application are not capsicumized.
Reported by: jenkins
Notes
Notes:
svn path=/head/; revision=348711
-rw-r--r-- | usr.bin/tail/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/tail/Makefile b/usr.bin/tail/Makefile index 78d4497fce93..5d53b23957a7 100644 --- a/usr.bin/tail/Makefile +++ b/usr.bin/tail/Makefile @@ -6,7 +6,7 @@ PROG= tail SRCS= forward.c misc.c read.c reverse.c tail.c -.if ${MK_CASPER} != "no" +.if ${MK_CASPER} != "no" && !defined(RESCUE) LIBADD+= casper LIBADD+= cap_fileargs CFLAGS+= -DWITH_CASPER |