From d32f14190b203ae8af35cc1c1453b8e938ec2889 Mon Sep 17 00:00:00 2001 From: Mariusz Zaborski Date: Wed, 5 Jun 2019 22:55:00 +0000 Subject: [PATCH] tail: disable capsicum in rescue mode All rescue application are not capsicumized. Reported by: jenkins --- usr.bin/tail/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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