[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/2] autoconf: bash is not needed on NetBSD
Remove check for bash on NetBSD, since it is not needed for hotplug scripts (NetBSD hotplug scripts use sh) or the build system. Signed-off-by: Roger Pau Monne <roger.pau@xxxxxxxxxx> --- tools/configure.ac | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/tools/configure.ac b/tools/configure.ac index e708f01..47607ae 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -93,7 +93,11 @@ AS_IF([test "x$ocamltools" = "xy"], [ ocamltools="n" ]) ]) -AX_PATH_PROG_OR_FAIL([BASH], [bash]) +case "$host_os" in +linux*) + AX_PATH_PROG_OR_FAIL([BASH], [bash]) + ;; +esac AS_IF([echo "$PYTHON" | grep -q "^/"], [ PYTHONPATH=$PYTHON PYTHON=`basename $PYTHONPATH` -- 1.7.7.5 (Apple Git-26) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |