mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
081d682b26
The acx_libwrap.m4 and attributes.m4 were used for checks related
to libwrap and compile attribute/flags, respectively. Since these
have been removed from the build system, they are left over lint.
Files can be retrieved by
git checkout ddfb9b07df
-- <filename>
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
13 lines
250 B
Bash
Executable File
13 lines
250 B
Bash
Executable File
#!/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
|