Date: Wed, 5 Jun 2019 22:55:00 +0000 (UTC) From: Mariusz Zaborski <oshogbo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r348711 - head/usr.bin/tail Message-ID: <201906052255.x55Mt0Wq023307@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: oshogbo Date: Wed Jun 5 22:55:00 2019 New Revision: 348711 URL: https://svnweb.freebsd.org/changeset/base/348711 Log: tail: disable capsicum in rescue mode All rescue application are not capsicumized. Reported by: jenkins Modified: head/usr.bin/tail/Makefile Modified: head/usr.bin/tail/Makefile ============================================================================== --- head/usr.bin/tail/Makefile Wed Jun 5 22:47:37 2019 (r348710) +++ head/usr.bin/tail/Makefile Wed Jun 5 22:55:00 2019 (r348711) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906052255.x55Mt0Wq023307>