From 82ecd48a7f2cd2d8bcbe583834732029b3889ea1 Mon Sep 17 00:00:00 2001 From: Ian Abbott Date: Thu, 10 Apr 2008 17:44:24 +0000 Subject: [PATCH] Corrected previous commit. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bb7c1522..24a38299 100644 --- a/configure.ac +++ b/configure.ac @@ -72,7 +72,7 @@ AM_CONDITIONAL([CONFIG_PCI],[test "$HAVE_PCI" = "yes"]) AC_ARG_ENABLE([pci],[ --disable-pci Disable support for PCI devices], [ENABLE_PCI=$enableval],[ENABLE_PCI="maybe"]) if test "$HAVE_PCI" = "yes" ; then - if test "ENABLE_PCI" = "no" ; then + if test "$ENABLE_PCI" = "no" ; then AC_MSG_NOTICE([PCI support disabled]) USE_PCI="no" else @@ -80,7 +80,7 @@ if test "$HAVE_PCI" = "yes" ; then USE_PCI="yes" fi else - if test "ENABLE_PCI" = "yes" ; then + if test "$ENABLE_PCI" = "yes" ; then AC_MSG_ERROR([Kernel does not support PCI]) fi USE_PCI="no" -- 2.26.2