aboutsummaryrefslogtreecommitdiff
path: root/bin/cat
diff options
context:
space:
mode:
authorMariusz Zaborski <oshogbo@FreeBSD.org>2021-01-17 00:04:28 +0000
committerMariusz Zaborski <oshogbo@FreeBSD.org>2021-01-17 00:21:46 +0000
commitb7ab6832cd988aff7f4e468e507c314dd7641638 (patch)
tree8c32e32d7b60911d04a854daa6e31416b0b34cde /bin/cat
parentd28210b2c2aaf3200907ed30d296b0d4856dd03c (diff)
downloadsrc-b7ab6832cd988aff7f4e468e507c314dd7641638.tar.gz
src-b7ab6832cd988aff7f4e468e507c314dd7641638.zip
cat: disable building it with Casper
We want to measure what are the actual cost of sandboxing cat(1). Requested by: mjg, cy, Mike Karels Discussed with: rwatson, markj
Diffstat (limited to 'bin/cat')
-rw-r--r--bin/cat/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/cat/Makefile b/bin/cat/Makefile
index abfdcbcfbb2e..cce69d8aad9e 100644
--- a/bin/cat/Makefile
+++ b/bin/cat/Makefile
@@ -15,11 +15,12 @@ CFLAGS+=-DBOOTSTRAP_CAT
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
-.if ${MK_CASPER} != "no" && !defined(RESCUE) && !defined(BOOTSTRAPPING)
-LIBADD+= casper
-LIBADD+= cap_fileargs
-LIBADD+= cap_net
-CFLAGS+=-DWITH_CASPER
-.endif
+# Temporary disable building cat with Casper.
+#.if ${MK_CASPER} != "no" && !defined(RESCUE) && !defined(BOOTSTRAPPING)
+#LIBADD+= casper
+#LIBADD+= cap_fileargs
+#LIBADD+= cap_net
+#CFLAGS+=-DWITH_CASPER
+#.endif
.include <bsd.prog.mk>