configure.ac: don't run sandbox-shell test when cross compiling

This commit is contained in:
Yorick van Pelt 2022-05-24 17:00:27 +02:00
parent cbf60bec6f
commit 7e52472759
No known key found for this signature in database
GPG Key ID: A36E70F9DC014A15
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ esac
AC_ARG_WITH(sandbox-shell, AS_HELP_STRING([--with-sandbox-shell=PATH],[path of a statically-linked shell to use as /bin/sh in sandboxes]),
sandbox_shell=$withval)
AC_SUBST(sandbox_shell)
if ! test -z ${sandbox_shell+x}; then
if test ${cross_compiling:-no} = no && ! test -z ${sandbox_shell+x}; then
AC_MSG_CHECKING([whether sandbox-shell has the standalone feature])
# busybox shell sometimes allows executing other busybox applets,
# even if they are not in the path, breaking our sandbox