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... " echo -n "checking for gtkdocize... "
which gtkdocize || { if which gtkdocize ; then
echo "*** No gtkdocize found, please install it ***" gtkdocize --copy || exit 1
exit 1 else
} echo "*** No gtkdocize found, skipping documentation ***"
gtkdocize --copy || exit 1 fi
echo -n "checking for autoreconf... " echo -n "checking for autoreconf... "
which autoreconf || { which autoreconf || {