This caused rpm generation to fail because false returns 1. Changelog: Change the command to true rather than false if docbook is not installed. Vincent
Index: wine/configure =================================================================== RCS file: /home/wine/wine/configure,v retrieving revision 1.469 diff -u -r1.469 configure --- wine/configure 15 Oct 2003 04:09:55 -0000 1.469 +++ wine/configure 15 Oct 2003 17:53:28 -0000 @@ -4909,7 +4909,7 @@ test -n "$DB2HTML" && break done -test -n "$DB2HTML" || DB2HTML="false" +test -n "$DB2HTML" || DB2HTML="true" @@ -4952,7 +4952,7 @@ test -n "$DB2PDF" && break done -test -n "$DB2PDF" || DB2PDF="false" +test -n "$DB2PDF" || DB2PDF="true" @@ -4995,7 +4995,7 @@ test -n "$DB2PS" && break done -test -n "$DB2PS" || DB2PS="false" +test -n "$DB2PS" || DB2PS="true" @@ -5038,7 +5038,7 @@ test -n "$DB2TXT" && break done -test -n "$DB2TXT" || DB2TXT="false" +test -n "$DB2TXT" || DB2TXT="true" Index: wine/configure.ac =================================================================== RCS file: /home/wine/wine/configure.ac,v retrieving revision 1.191 diff -u -r1.191 configure.ac --- wine/configure.ac 15 Oct 2003 04:09:55 -0000 1.191 +++ wine/configure.ac 15 Oct 2003 17:53:28 -0000 @@ -110,19 +110,19 @@ AC_SUBST(LINTFLAGS) dnl Check for db2html -AC_CHECK_PROGS(DB2HTML, docbook2html db2html, false) +AC_CHECK_PROGS(DB2HTML, docbook2html db2html, true) AC_SUBST(DB2HTML) dnl Check for db2pdf -AC_CHECK_PROGS(DB2PDF, docbook2pdf db2pdf, false) +AC_CHECK_PROGS(DB2PDF, docbook2pdf db2pdf, true) AC_SUBST(DB2PDF) dnl Check for db2ps -AC_CHECK_PROGS(DB2PS, docbook2ps db2ps, false) +AC_CHECK_PROGS(DB2PS, docbook2ps db2ps, true) AC_SUBST(DB2PS) dnl Check for db2txt -AC_CHECK_PROGS(DB2TXT, docbook2txt db2txt, false) +AC_CHECK_PROGS(DB2TXT, docbook2txt db2txt, true) AC_SUBST(DB2TXT) dnl **** Check for some libraries ****