From 345da354bfff54b773537f651a4406fcf4fb6709 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sat, 23 Jun 2007 19:29:54 +0000 Subject: [PATCH] * fixed (again) automake symlink at $datadir, somehow ln -n does not work in this case git-svn-id: svn://svn.opensde.net/opensde/package/trunk@21418 10447126-35f2-4685-b0cf-6dd780d3921f --- base/automake/automake.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/automake/automake.conf b/base/automake/automake.conf index 45aaae21d..71d3dba94 100644 --- a/base/automake/automake.conf +++ b/base/automake/automake.conf @@ -14,6 +14,10 @@ automake_symlink() { local v=$( echo $ver | cut -d'.' -f'1-2' ) + + # strangely ln -n is not working in this case + rm -f $oot$datadir/automake ln -snf automake-$v $root$datadir/automake } + hook_add postmake 5 "automake_symlink"