debug-shell: don't be picky, use /bin/sh rather than /bin/bash

In a minimal initramfs, one might not always have the full bash available.
Typically if using busybox.
This commit is contained in:
Tom Gundersen 2013-02-22 17:40:00 +01:00
parent 855f6f07fe
commit 317c96d944

View file

@ -276,7 +276,7 @@ AM_CONDITIONAL(HAVE_SELINUX, [test "$have_selinux" = "yes"])
if test "x${have_selinux}" != xno ; then
sushell=/sbin/sushell
else
sushell=/bin/bash
sushell=/bin/sh
fi
AC_SUBST(sushell)