Fixed the UnarchiveObjects rule so that it can handle any extensions (and

not just .o - newer GCC releases seem to have .oS objects in libgcc.a).


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11057 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-01-26 01:48:50 +00:00
parent b1e5b60ccf
commit 271174f273
1 changed files with 1 additions and 1 deletions

View File

@ -1607,7 +1607,7 @@ rule UnarchiveObjects
actions UnarchiveObjects
{
cd $(1[1]:D)
ar -x "$(2)" $(1:B).o
ar -x "$(2)" $(1:D=)
cd -
}