From: Roger Pau Monne Date: Tue, 27 Sep 2016 08:13:17 +0000 (+0200) Subject: tools/configure: fix --with-system-{ovmf/seabios} X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~342 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ecee7bfc18c69892e2a3b213448e592eceeccb7a;p=xen.git tools/configure: fix --with-system-{ovmf/seabios} Currently configure code doesn't define {SEABIOS/OVMF}_PATH when --with-system-{ovmf/seabios} is used. Fix this by making sure those defines are always set if the internal {ovmf/seabios}_path variables are also set. Signed-off-by: Roger Pau Monné Suggested-by: Wei Liu Cc: Wei Liu Cc: Ian Jackson [ wei: run autogen.sh ] Acked-by: Wei Liu --- diff --git a/tools/configure b/tools/configure index 7b223051a0..65ad241757 100755 --- a/tools/configure +++ b/tools/configure @@ -4449,7 +4449,7 @@ if test "${with_system_seabios+set}" = set; then : fi -if test "x$seabios" = "xy"; then : +if test "x$seabios" = "xy" -o -n "$seabios_path" ; then : cat >>confdefs.h <<_ACEOF @@ -4472,7 +4472,7 @@ if test "${with_system_ovmf+set}" = set; then : fi -if test "x$ovmf" = "xy"; then : +if test "x$ovmf" = "xy" -o -n "$ovmf_path" ; then : cat >>confdefs.h <<_ACEOF diff --git a/tools/configure.ac b/tools/configure.ac index f010d7233e..5724ace2df 100644 --- a/tools/configure.ac +++ b/tools/configure.ac @@ -222,7 +222,7 @@ AC_ARG_WITH([system-seabios], *) seabios_path=$withval ;; esac ],[]) -AS_IF([test "x$seabios" = "xy"], [ +AS_IF([test "x$seabios" = "xy" -o -n "$seabios_path" ], [ AC_DEFINE_UNQUOTED([SEABIOS_PATH], ["${seabios_path:-$XENFIRMWAREDIR/seabios.bin}"], [SeaBIOS path]) @@ -239,7 +239,7 @@ AC_ARG_WITH([system-ovmf], *) ovmf_path=$withval ;; esac ],[]) -AS_IF([test "x$ovmf" = "xy"], [ +AS_IF([test "x$ovmf" = "xy" -o -n "$ovmf_path" ], [ AC_DEFINE_UNQUOTED([OVMF_PATH], ["${ovmf_path:-$XENFIRMWAREDIR/ovmf.bin}"], [OVMF path])