From 489e1655a0be43f6cca08030e558a03824627c9e Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 7 Jul 2021 08:43:33 +0000 Subject: [PATCH] add --enable-sandbox patch from Anna "CyberTailor" It's handy for helpers like ebuild's use_enable. (the sandbox is still always enabled by default) --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 81f3c3b..6453fa8 100755 --- a/configure +++ b/configure @@ -119,6 +119,11 @@ for keyvals in "$@"; do continue fi + if [ "$keyvals" = "--enable-sandbox" ]; then + DISABLE_SANDBOX=0 + continue + fi + key=`echo $keyvals | cut -s -d '=' -f1` if [ -z "$key" ]; then echo "$0: invalid key-value: $keyvals" 1>&2