3
0
Fork 0
forked from mirrors/nixpkgs

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:
Peter Simons 2012-07-10 22:25:44 +02:00
parent 662f7d02ab
commit 719852784a

View file

@ -36,10 +36,12 @@ postInstall() {
# global directory, while callers of `aclocal' do not need to pass
# `-I' options explicitly.
for prog in $out/bin/aclocal*; do
for prog in $out/bin/aclocal*; do
wrapAclocal "$prog"
done
ln -s aclocal-1.11 $out/share/aclocal
ln -s automake-1.11 $out/share/automake
}
genericBuild