mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
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:
parent
d652494ef4
commit
473f75ffd9
11 changed files with 48 additions and 16 deletions
|
|
@ -16,7 +16,6 @@ src_prepare() {
|
|||
autoconf-2.53
|
||||
|
||||
# Otherwise automake-1.7 fails to find autoconf
|
||||
ln -s "${PREFIX}"/bin/autoconf-2.53 "${PREFIX}"/bin/autoconf
|
||||
automake-1.7
|
||||
|
||||
# Install autoconf data files into versioned directory
|
||||
|
|
@ -38,4 +37,8 @@ src_compile() {
|
|||
|
||||
src_install() {
|
||||
make install MAKEINFO=true DESTDIR="${DESTDIR}"
|
||||
ln -s autoconf-2.54 "${DESTDIR}${PREFIX}/bin/autoconf"
|
||||
ln -s autoheader-2.54 "${DESTDIR}${PREFIX}/bin/autoheader"
|
||||
ln -s autom4te-2.54 "${DESTDIR}${PREFIX}/bin/autom4te"
|
||||
ln -s autoreconf-2.54 "${DESTDIR}${PREFIX}/bin/autoreconf"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue