commit 489e1655a0be43f6cca08030e558a03824627c9e from: Omar Polo date: Wed Jul 07 08:43:33 2021 UTC 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) commit - 1a572d422159b247922d8b22c58e7b60c35d6fc6 commit + 489e1655a0be43f6cca08030e558a03824627c9e blob - 81f3c3b9a6a6126f81dedb7d7c626e32d17dc8a2 blob + 6453fa8e9a14dd881331b25b75a1ea3e2237f2ce --- configure +++ 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