From d9809d83b26550830955832a546f83ae20e43c80 Mon Sep 17 00:00:00 2001 From: Olivier Martin Date: Thu, 26 Jun 2014 23:57:58 +0100 Subject: [PATCH] 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 --- autogen.sh | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- 2.39.2