From: Tom Gundersen Date: Fri, 22 Feb 2013 16:40:00 +0000 (+0100) Subject: debug-shell: don't be picky, use /bin/sh rather than /bin/bash X-Git-Tag: v198~186 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=317c96d944e01e6e87200dd7ebe964fe9774d2c4 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. --- diff --git a/configure.ac b/configure.ac index 834b12314..b7a587c66 100644 --- a/configure.ac +++ b/configure.ac @@ -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)