From: Emmanuele Bassi Date: Mon, 28 Apr 2008 15:38:30 +0000 (+0000) Subject: 2008-04-28 Emmanuele Bassi X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=451dce36004fff1da7f770edb32afaff7e764561;p=profile%2Fivi%2Fclutter.git 2008-04-28 Emmanuele Bassi * 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. --- diff --git a/ChangeLog b/ChangeLog index d75902b..7c975b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-28 Emmanuele Bassi + + * 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 * clutter/cogl/cogl.h.in: reindented. diff --git a/autogen.sh b/autogen.sh index a33619a..6918b14 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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