From d0581a3c6c2c04aef2bffd7880fd6bfe4a9fa864 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 28 Aug 2013 23:55:32 +0200 Subject: [PATCH] automake: changed to also create a /usr/share/aclocal symlink Besides creating a symlink automake -> automake-$version in /usr/share we are now creating one for aclocal -> aclocal-$version too. --- base/automake/automake.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/base/automake/automake.conf b/base/automake/automake.conf index 31ff17e36..0e60b6097 100644 --- a/base/automake/automake.conf +++ b/base/automake/automake.conf @@ -16,8 +16,10 @@ automake_symlink() { local v=$( echo $ver | cut -d'.' -f'1-2' ) # strangely ln -n is not working in this case - rm -f $root$datadir/automake - ln -snf automake-$v $root$datadir/automake + for x in aclocal automake; do + rm -f $root$datadir/$x + ln -snf $x-$v $root$datadir/$x + done } hook_add postmake 5 "automake_symlink"