2008-04-28 Emmanuele Bassi <ebassi@openedhand.com>

* autogen.sh: Do not just touch the gtk-doc.make file, if we
	could not find gtkdocize, but echo an empty EXTRA_DIST into it
	so that the automake won't complain later on.
This commit is contained in:
Emmanuele Bassi 2008-04-28 15:38:30 +00:00
parent 35e0ae7fa9
commit 451dce3600
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-04-28 Emmanuele Bassi <ebassi@openedhand.com>
* autogen.sh: Do not just touch the gtk-doc.make file, if we
could not find gtkdocize, but echo an empty EXTRA_DIST into it
so that the automake won't complain later on.
2008-04-28 Øyvind Kolås <pippin@o-hand.com> 2008-04-28 Øyvind Kolås <pippin@o-hand.com>
* clutter/cogl/cogl.h.in: reindented. * clutter/cogl/cogl.h.in: reindented.

View File

@ -15,7 +15,7 @@ test $TEST_TYPE $FILE || {
GTKDOCIZE=`which gtkdocize` GTKDOCIZE=`which gtkdocize`
if test -z $GTKDOCIZE; then if test -z $GTKDOCIZE; then
echo "*** No gtk-doc support ***" echo "*** No gtk-doc support ***"
touch gtk-doc.make echo "EXTRA_DIST =" > gtk-doc.make
else else
gtkdocize || exit $? gtkdocize || exit $?
fi fi