From 271174f273f709740ed4c90c8ec4d6a10e0c835f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 26 Jan 2005 01:48:50 +0000 Subject: [PATCH] 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 --- Jamrules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jamrules b/Jamrules index 474180e835..efb4676347 100644 --- a/Jamrules +++ b/Jamrules @@ -1607,7 +1607,7 @@ rule UnarchiveObjects actions UnarchiveObjects { cd $(1[1]:D) - ar -x "$(2)" $(1:B).o + ar -x "$(2)" $(1:D=) cd - }