From: Viktor M. <mih...@us...> - 2005-03-03 09:26:46
|
Update of /cvsroot/sblim/mofc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16147 Modified Files: configure.ac Log Message: Fixed incorrect --with-sfcb handling. Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/mofc/configure.ac,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- configure.ac 3 Mar 2005 09:08:47 -0000 1.1.1.1 +++ configure.ac 3 Mar 2005 09:26:37 -0000 1.2 @@ -1,6 +1,6 @@ # $Id$ -AC_INIT(MOF Compiler, 0.6.5a, mih...@de...,mofc) +AC_INIT(MOF Compiler, 0.6.5b, mih...@de...,mofc) AC_CONFIG_SRCDIR([hash.c]) AC_CONFIG_HEADER([config.h]) @@ -33,7 +33,7 @@ [use sfcb backend. In that case this package must be in a sub-directory of the sfcb package.])]) -if test "$with_sfcb" != no; then +if test "$with_sfcb" == yes; then if test x"$SFCB_DIR" = x; then SFCB_DIR=.. fi |