Corrected previous commit.
authorIan Abbott <abbotti@mev.co.uk>
Thu, 10 Apr 2008 17:44:24 +0000 (17:44 +0000)
committerIan Abbott <abbotti@mev.co.uk>
Thu, 10 Apr 2008 17:44:24 +0000 (17:44 +0000)
configure.ac

index bb7c15220f56527c88ddba062a1be10cc90e93ba..24a38299b95f2c32056d8f299965050da4b299d4 100644 (file)
@@ -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"