Allow bootstrapping without gtk-doc

Seems like configure.ac is already able to handle it.
This commit is contained in:
Behdad Esfahbod 2014-02-11 17:29:40 -05:00
parent 1eacde00cc
commit b456d42bf6
1 changed files with 5 additions and 5 deletions

View File

@ -20,11 +20,11 @@ which pkg-config || {
}
echo -n "checking for gtkdocize... "
which gtkdocize || {
echo "*** No gtkdocize found, please install it ***"
exit 1
}
gtkdocize --copy || exit 1
if which gtkdocize ; then
gtkdocize --copy || exit 1
else
echo "*** No gtkdocize found, skipping documentation ***"
fi
echo -n "checking for autoreconf... "
which autoreconf || {