automake-1.11.x: create symlinks for un-versioned directory names
The latest Automake version installs the 'aclocal' and 'automake' directories with a '-1.11' version suffix. Our setup hook is not prepared to handle that, so we add those symlinks as a quick fix. A better solution would be to extend the setup hook for Automake to recognize those kind of version suffixes.
This commit is contained in:
parent
662f7d02ab
commit
719852784a
@ -36,10 +36,12 @@ postInstall() {
|
|||||||
# global directory, while callers of `aclocal' do not need to pass
|
# global directory, while callers of `aclocal' do not need to pass
|
||||||
# `-I' options explicitly.
|
# `-I' options explicitly.
|
||||||
|
|
||||||
for prog in $out/bin/aclocal*; do
|
for prog in $out/bin/aclocal*; do
|
||||||
wrapAclocal "$prog"
|
wrapAclocal "$prog"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
ln -s aclocal-1.11 $out/share/aclocal
|
||||||
|
ln -s automake-1.11 $out/share/automake
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
genericBuild
|
genericBuild
|
||||||
|
Loading…
x
Reference in New Issue
Block a user