Browse Source

* 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
early
Alejandro Mery 18 years ago
parent
commit
345da354bf
  1. 4
      base/automake/automake.conf

4
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"

Loading…
Cancel
Save