From 317c96d944e01e6e87200dd7ebe964fe9774d2c4 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Fri, 22 Feb 2013 17:40:00 +0100 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2