wok-next diff edje/receipt @ rev 3105
e2fsprogs: Remove blkid (use most recent one from util-linux-ng)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 17 23:50:50 2009 +0200 (2009-05-17) |
parents | 8a540c20b723 |
children | 2c110965aa8b |
line diff
1.1 --- a/edje/receipt Fri May 08 16:12:51 2009 +0200 1.2 +++ b/edje/receipt Sun May 17 23:50:50 2009 +0200 1.3 @@ -33,5 +33,13 @@ 1.4 cp -a $_pkg/usr/share $fs/usr 1.5 chmod 755 $fs/usr/bin/* 1.6 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.7 + for i in $fs/usr/lib/*.so ; do 1.8 + [ -L $i ] || continue 1.9 + [ -e $i.0 ] && continue 1.10 + target=$(readlink $i) 1.11 + case "$target" in 1.12 + *.so.0.*) ln -s $target $i.0;; 1.13 + esac 1.14 + done 1.15 } 1.16