summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorOlivier Martin <olivier.martin@appnearme.com>2014-06-26 23:57:58 +0100
committerOlivier Martin <olivier.martin@appnearme.com>2014-06-26 23:57:58 +0100
commit71887d2f39c78afb4bbf0082f7c009a3378abc56 (patch)
tree4077b040bdd48639aa54fafb0b1513a654f74069 /autogen.sh
parentb93faf01f7e459006267e93a98b290e22f03151e (diff)
downloadlightdm-71887d2f39c78afb4bbf0082f7c009a3378abc56.tar.gz
Makefile: Fixed @YELP_HELP_RULES@: *** missing separator
'yelp-tools' are required to build lighthm. This change checks if yelp-tools are installed prior to configure & build lighthm as recommended on this page: https://wiki.gnome.org/Initiatives/GnomeGoals/NewDocumentationInfrastructure
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index b0e51a33..e3dea10e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -8,6 +8,14 @@ aclocal
autoconf
autoheader
automake --add-missing --copy --foreign
+
+YELP=`which yelp-build`
+if test -z $YELP; then
+ echo "*** The tools to build the documentation are not found,"
+ echo " please intall the yelp-tools package ***"
+ exit 1
+fi
+
if [ -z "$NOCONFIGURE" ]; then
./configure $@
fi