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