Remove pre-generated info files.

Fixes: #86
This commit is contained in:
Andrius Štikonas 2021-04-11 22:57:43 +01:00
parent 2423b77114
commit ddf05018a9
19 changed files with 48 additions and 7 deletions

View file

@ -6,9 +6,20 @@ src_prepare() {
. ../../import-gnulib.sh
autoreconf-2.61 -f
# Pre-build texinfo files
rm doc/find.info
}
src_configure() {
# Musl is not recognized, pretend to be uClibc
CC=tcc ./configure --prefix="${PREFIX}" CPPFLAGS="-D__UCLIBC__"
}
src_compile() {
make MAKEINFO=true DESTDIR="${DESTDIR}"
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}