[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] configure: disable bash check for FreeBSD
Bash it's not used on FreeBSD. Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- Please re-run autoconf after applying --- tools/configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/configure.ac b/tools/configure.ac index 873e18d..28a539c 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -320,7 +320,11 @@ AS_IF([test "x$xsmpolicy" = "xy"], [ xsmpolicy="n" ]) ]) -AX_PATH_PROG_OR_FAIL([BASH], [bash]) +dnl FreeBSD doesn't require bash (hotplug scripts are in plain sh) +case "$host_os" in + freebsd*) ;; + *) AX_PATH_PROG_OR_FAIL([BASH], [bash]);; +esac AS_IF([echo "$PYTHON" | grep -q "^/"], [ PYTHONPATH=$PYTHON PYTHON=`basename $PYTHONPATH` -- 2.10.1 (Apple Git-78) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |