eudev/autogen.sh
Felipe Contreras 8b75afdbc2 Fix build when gtk-doc is enabled
Looks like gtk-doc.make is meant for automake, not make.

Some previous changes need to be reverted.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2012-11-17 21:15:36 +01:00

11 lines
237 B
Bash
Executable File

#!/bin/sh
if type -p gtkdocize > /dev/null; then
gtkdocize --docdir docs
else
echo 'EXTRA_DIST =' > docs/gtk-doc.make
echo 'AC_DEFUN([GTK_DOC_CHECK], [AM_CONDITIONAL([ENABLE_GTK_DOC], [FALSE])])' > m4/gtk-doc.m4
fi
autoreconf -f -i