Space in path awareness...

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6156 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin 2004-01-19 22:16:16 +00:00
parent 81bf1b26a2
commit 15716fddcb

View File

@ -2031,8 +2031,8 @@ rule Copy
actions Copy
{
cp -dp $(>) $(<) ;
if [ -f $(>) ] ; then copyattr $(>) $(<) ; fi ;
cp -dp "$(>)" "$(<)" ;
if [ -f "$(>)" ] ; then copyattr "$(>)" "$(<)" ; fi ;
}
rule Packages
@ -2171,5 +2171,5 @@ rule LinkInstallZip
actions together LinkInstallZip
{
ln -sf `pwd`/$(2) $(1) ;
ln -sf `pwd`/"$(2)" "$(1)" ;
}