2008-04-28 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Mon, 28 Apr 2008 15:38:30 +0000 (15:38 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Mon, 28 Apr 2008 15:38:30 +0000 (15:38 +0000)
* 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.

ChangeLog
autogen.sh

index d75902b..7c975b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * clutter/cogl/cogl.h.in: reindented.
index a33619a..6918b14 100755 (executable)
@@ -15,7 +15,7 @@ test $TEST_TYPE $FILE || {
 GTKDOCIZE=`which gtkdocize`
 if test -z $GTKDOCIZE; then
         echo "*** No gtk-doc support ***"
-        touch gtk-doc.make
+        echo "EXTRA_DIST =" > gtk-doc.make
 else
         gtkdocize || exit $?
 fi