Fixed the "" I accidentially introduced in the KernelLd. Also removed them

from $(LINKLIBS), but wrapped $(NEEDLIBS) instead.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@162 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2002-07-12 21:16:33 +00:00
parent dcda4e36eb
commit 1eb18edf5f
1 changed files with 3 additions and 3 deletions

View File

@ -640,7 +640,7 @@ rule Link
actions Link bind NEEDLIBS
{
$(LINK) $(LINKFLAGS) -o "$(1)" $(UNDEFS) "$(2)" $(NEEDLIBS) $(LINKLIBS) ;
$(LINK) $(LINKFLAGS) -o "$(1)" $(UNDEFS) "$(2)" "$(NEEDLIBS)" $(LINKLIBS) ;
}
# BeOS specific rules
@ -773,13 +773,13 @@ rule KernelLd
# Add libgcc.a - NB this should be detected not hard coded!
if ! $(5) {
LINKLIBS on $(1) += "-L $(GCC_PATH) -lgcc" ;
LINKLIBS on $(1) += -L $(GCC_PATH) -lgcc ;
}
}
actions KernelLd
{
$(LINK) $(LINKFLAGS) -o "$(1)" "$(2)" "$(LINKLIBS)" ;
$(LINK) $(LINKFLAGS) -o "$(1)" "$(2)" $(LINKLIBS) ;
}
rule KernelStaticLibrary