wok-next diff acl-dev/receipt @ rev 3805
xplanet: fix for gcc 4.4
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 05 17:11:25 2009 +0200 (2009-08-05) |
parents | 22fccd4d5400 |
children | fef823ac02e3 |
line diff
1.1 --- a/acl-dev/receipt Thu Jul 23 14:00:31 2009 +0000 1.2 +++ b/acl-dev/receipt Wed Aug 05 17:11:25 2009 +0200 1.3 @@ -12,11 +12,13 @@ 1.4 # Rules to gen a SliTaz package suitable for Tazpkg. 1.5 genpkg_rules() 1.6 { 1.7 - mkdir -p $fs/lib 1.8 - cp -a $_pkg/lib/*.*a $fs/lib 1.9 - 1.10 mkdir -p $fs/usr/lib 1.11 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.12 1.13 + # Symlinks are not created correctly; create manually 1.14 + mkdir -p $fs/lib 1.15 + ln -s /usr/lib/libacl.a $fs/lib/libacl.a 1.16 + ln -s /usr/lib/libacl.la $fs/lib/libacl.la 1.17 + 1.18 cp -a $_pkg/usr/include $fs/usr 1.19 }