tools/configure: detect $host_vendor of rumprun, not just rumpxen
authorIan Jackson <ian.jackson@eu.citrix.com>
Fri, 13 Feb 2015 16:04:34 +0000 (16:04 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Mon, 16 Feb 2015 14:49:28 +0000 (14:49 +0000)
This has been renamed by the rumpkernels upstream.

(This patch needs to be backported.)

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
CC: Antti Kantee <pooka@iki.fi>
CC: Martin Lucina <martin@lucina.net>
CC: Ian Campbell <Ian.Campbell@eu.citrix.com>
tools/configure
tools/configure.ac

index e7dac757a0b9873fd259a44ccd35ba292a77a2b9..1c92e831339d36ac04178c9fcaeb82c5740f858c 100755 (executable)
@@ -2402,8 +2402,8 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
 
 
 case $host_vendor in
-rumpxen) CONFIG_RUMP=y; rump=true ;;
-*)       CONFIG_RUMP=n; rump=false ;;
+rumpxen|rumprun) CONFIG_RUMP=y; rump=true ;;
+*)               CONFIG_RUMP=n; rump=false ;;
 esac
 
 
index 03dadd77aade27a67e6bdd2d34cfa64b4ab90132..183561781b3fd33acf8e980eb5c08f2663c63810 100644 (file)
@@ -35,8 +35,8 @@ APPEND_INCLUDES and APPEND_LIB instead when possible.])
 AC_CANONICAL_HOST
 
 case $host_vendor in
-rumpxen) CONFIG_RUMP=y; rump=true ;;
-*)       CONFIG_RUMP=n; rump=false ;;
+rumpxen|rumprun) CONFIG_RUMP=y; rump=true ;;
+*)               CONFIG_RUMP=n; rump=false ;;
 esac
 AC_SUBST(CONFIG_RUMP)