Add autoconf symlinks to every autoconf pkg

Early versions of automake have `autoconf` hardcoded into them as a
program that should exist. We *were* "fixing" this by creating a symlink
in autoconf-2.54. However this symlink is _not_ in the repo package,
which broke some things. Also meant that from autoconf 2.54 through
autoconf 2.71, automake was using autoconf 2.53.

Let's make it consistent by having autoconf symlinks in every autoconf
package.
This commit is contained in:
fosslinux 2024-12-24 09:52:54 +11:00
parent d652494ef4
commit 473f75ffd9
11 changed files with 48 additions and 16 deletions

View file

@ -30,4 +30,8 @@ src_compile() {
src_install() {
make install MAKEINFO=true DESTDIR="${DESTDIR}"
ln -s autoconf-2.59 "${DESTDIR}${PREFIX}/bin/autoconf"
ln -s autoheader-2.59 "${DESTDIR}${PREFIX}/bin/autoheader"
ln -s autom4te-2.59 "${DESTDIR}${PREFIX}/bin/autom4te"
ln -s autoreconf-2.59 "${DESTDIR}${PREFIX}/bin/autoreconf"
}