From 285871a2db42727665a2ab7fc16fa2fb8fa830d3 Mon Sep 17 00:00:00 2001 From: Ting Liu Date: Thu, 23 May 2013 17:39:35 +0800 Subject: [PATCH] fix network driver check issue on opensuse Upstream-Status: Pending Signed-off-by: Ting Liu --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 3f30865..708eb28 100644 --- a/configure.ac +++ b/configure.ac @@ -77,7 +77,7 @@ fi if test "x$with_driver" = "xcheck" && test -f /etc/ubuntu_version ; then with_driver=debian fi -if test "x$with_driver" = "xcheck" && test -f /etc/suse-release ; then +if test "x$with_driver" = "xcheck" && (test -f /etc/suse-release || test -f /etc/SuSE-release) ; then with_driver=suse fi if test "x$with_driver" = "xcheck" ; then -- 1.7.3.4