summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2013-02-22 17:40:00 +0100
committerTom Gundersen <teg@jklm.no>2013-02-25 15:08:36 +0100
commit317c96d944e01e6e87200dd7ebe964fe9774d2c4 (patch)
treeba52bc4d7355f3d051f8b91a64444eefbea9c888 /configure.ac
parent855f6f07fec5106c1c0201dd70ffab6764a0c1a6 (diff)
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.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 834b12314c..b7a587c662 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)