summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-11-26 18:40:20 -0500
committerAnthony G. Basile <blueness@gentoo.org>2012-11-26 18:40:20 -0500
commit73577f3bcbca6d75faf53a476e1ce76c390f1a98 (patch)
treee3397ddd249cd92133a2ea153ce5499302242a48 /autogen.sh
parent908f00df4b6b9f22f19ccefcedd5836ac79368d5 (diff)
Allow autogen on systems without gtk-doc or introspection installed
On systems without gtk-doc installed, we were mocking up docs/gtk-doc.make and m4/gtk-doc.m4 to avoid a failure in configure. On systems without introspection installed, we were doing nothing and allowing the failure to occur. Since autogen should only be run on the developer side this is should be okay, but to be more friendly to other distros and users that want to start from autogen, we now bundle docs/gtk-doc.make m4/gtk-doc.m4 m4/introspection.m4 Care in the future should be taken by the developers to make sure these files stay up to day. This should take care of https://github.com/gentoo/eudev/issues/11 Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/autogen.sh b/autogen.sh
index 70f68fb83c..6d65bb2a02 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,12 +1,3 @@
#!/bin/sh
-mkdir -p m4
-
-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