From 9787660351c60bb684180b44a998ea847a1bdca1 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Thu, 19 Feb 2009 10:47:38 +0000 Subject: [PATCH] [build] Fix interaction between shave, gtk-doc and libtool 1.x gtk-doc.make does not specify --tag=CC when invoking libtool, letting it decide which tag to use. Something that fails with libtool 1.x and when having CC set to funny things. --- autogen.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/autogen.sh b/autogen.sh index a6ab478..fe051b0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,6 +18,14 @@ if test -z $GTKDOCIZE; then echo "EXTRA_DIST =" > gtk-doc.make else gtkdocize || exit $? + # we need to patch gtk-doc.make to support pretty output with + # libtool 1.x. Should be fixed in the next version of gtk-doc. + # To be more resilient with the various versions of gtk-doc one + # can find, just sed gkt-doc.make rather than patch it. + sed -e 's#) --mode=compile#) --tag=CC --mode=compile#' gtk-doc.make > gtk-doc.temp \ + && mv gtk-doc.temp gtk-doc.make + sed -e 's#) --mode=link#) --tag=CC --mode=link#' gtk-doc.make > gtk-doc.temp \ + && mv gtk-doc.temp gtk-doc.make fi GLIB_GETTEXTIZE=`which glib-gettextize` -- 2.7.4