fix local depends in Copy and zip up symlinks properly in PackageInstallZip

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5738 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2003-12-23 04:02:41 +00:00
parent b1a94814dd
commit 5c4135222d

View File

@ -2009,14 +2009,14 @@ rule FT2_LinkLibrary
rule Copy
{
LocalDepends $(<) : $(>) ;
Depends $(<) : $(>) ;
SEARCH on $(>) = $(SEARCH_SOURCE) ;
}
actions Copy
{
cp -dp $(>) $(<) ;
if [ -f $(>) ] ; then copyattr $(>) $(<) ; fi ;
if [ -f $(>) ] ; then copyattr $(>) $(<) ; fi ;
}
rule Packages
@ -2133,7 +2133,7 @@ rule PackageInstallZip
actions together PackageInstallZip
{
cd $(1:P) ;
zip -rq $(1:BS) boot ;
zip -rqy $(1:BS) boot ;
}
rule LinkInstallZip