mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
[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.
This commit is contained in:
parent
21768fb957
commit
9787660351
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user