Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/libdbi/files: libdbi-0.9.0-doc-build-fix.patch
Date: Thu, 29 Aug 2013 16:01:31
Message-Id: 20130829160124.67B112004C@flycatcher.gentoo.org
1 robbat2 13/08/29 16:01:24
2
3 Added: libdbi-0.9.0-doc-build-fix.patch
4 Log:
5 Bump per bug #465716.
6
7 (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 dev-db/libdbi/files/libdbi-0.9.0-doc-build-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/libdbi/files/libdbi-0.9.0-doc-build-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/libdbi/files/libdbi-0.9.0-doc-build-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: libdbi-0.9.0-doc-build-fix.patch
16 ===================================================================
17 diff -Nuar libdbi-0.9.0.orig/configure.in libdbi-0.9.0/configure.in
18 --- libdbi-0.9.0.orig/configure.in 2013-08-29 15:34:54.883102666 +0000
19 +++ libdbi-0.9.0/configure.in 2013-08-29 15:36:07.827905613 +0000
20 @@ -201,14 +201,13 @@
21 dnl See whether to build the docs
22 dnl ==============================
23
24 -ac_docs="YES"
25 +ac_docs="yes"
26 AC_ARG_ENABLE(docs,
27 [ --disable-docs do not build and install the documentation.],
28 - [ if test "$enable_docs" = "no"; then
29 - ac_docs="NO"
30 - fi])
31 + [ ac_docs="$enableval" ],
32 + [ ac_docs="no" ])
33
34 -if test "$ac_docs" = "YES"; then
35 +if test "$ac_docs" = "yes"; then
36 docs_subdirs="doc"
37 else
38 docs_subdirs=""