From 993e7d6d01ec6a0c1e5f0af33766a69e3f528cb8 Mon Sep 17 00:00:00 2001 From: Henrik Nordstrom Date: Thu, 23 Oct 2008 13:21:23 +0200 Subject: [PATCH] Make --enable-storeio (without specifications) skip coss coss isn't supported. Don't automatically enable it. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 82fb511666..0b0f817adc 100755 --- a/configure.in +++ b/configure.in @@ -388,7 +388,7 @@ AC_ARG_ENABLE(storeio, yes) for dir in $srcdir/src/fs/*; do module="`basename $dir`" - if test -d "$dir" && test "$module" != CVS; then + if test -d "$dir" && test "$module" != CVS && test "$module" != coss; then STORE_MODULES="$STORE_MODULES $module" fi done -- 2.47.2