diff options
| author | Richard Hult <richard@imendio.com> | 2007-03-06 18:49:33 +0000 |
|---|---|---|
| committer | Richard Hult <rhult@src.gnome.org> | 2007-03-06 18:49:33 +0000 |
| commit | 808718bdb3700cfaa9d2f59c2c06574c1ae6c6e9 (patch) | |
| tree | f41c693b152b4ac4ad791ca731c096b85b1091fe | |
| parent | 2a6eee545636aab74e95894006e6bf6bb0a9f23c (diff) | |
| download | pygobject-808718bdb3700cfaa9d2f59c2c06574c1ae6c6e9.tar.gz pygobject-808718bdb3700cfaa9d2f59c2c06574c1ae6c6e9.tar.xz pygobject-808718bdb3700cfaa9d2f59c2c06574c1ae6c6e9.zip | |
Fix the docs option so that it's possible to disable building the docs.
2007-03-06 Richard Hult <richard@imendio.com>
* configure.ac: Fix the docs option so that it's possible to disable
building the docs.
svn path=/trunk/; revision=639
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-03-06 Richard Hult <richard@imendio.com> + + * configure.ac: Fix the docs option so that it's possible to disable + building the docs. + 2007-03-03 Edward Hervey <edward@fluendo.com> * gobject/pygobject.c: (set_property_from_pspec): diff --git a/configure.ac b/configure.ac index e148879..6fbc36c 100644 --- a/configure.ac +++ b/configure.ac @@ -78,7 +78,7 @@ AC_ARG_ENABLE(thread, dnl Building documentation AC_ARG_ENABLE(docs, - AC_HELP_STRING([--enable-docs], [Enable documentation building]),enable_docs=yes, + AC_HELP_STRING([--enable-docs], [Enable documentation building]),enable_docs=$enableval, enable_docs=no) if test "${enable_docs}" != no; then dnl |
