mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
b0d2945b5b
Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
15 lines
224 B
Bash
Executable File
15 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if type -p gtkdocize > /dev/null; then
|
|
gtkdocize --docdir docs
|
|
gtkdocargs=--enable-gtk-doc
|
|
fi
|
|
|
|
aclocal -I m4 && \
|
|
autoheader && \
|
|
autoconf && \
|
|
libtoolize --copy && \
|
|
automake --add-missing --copy
|