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

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]), 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) sandbox_shell=$withval)
AC_SUBST(sandbox_shell) 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]) AC_MSG_CHECKING([whether sandbox-shell has the standalone feature])
# busybox shell sometimes allows executing other busybox applets, # busybox shell sometimes allows executing other busybox applets,
# even if they are not in the path, breaking our sandbox # even if they are not in the path, breaking our sandbox