now links against libroot.so after user link objects
this avoids linking against libroot.so's glob symbol when user lib provides it fixes bug #535. this implies libroot.so's glob implementation could need a review. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17202 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
21c8c925d8
commit
51b3b53e71
@ -28,7 +28,7 @@ rule AddSharedObjectGlueCode
|
||||
LINK_BEGIN_GLUE on $(1) = $(beginGlue) ;
|
||||
LINK_END_GLUE on $(1) = $(endGlue) ;
|
||||
|
||||
NEEDLIBS on $(1) = $(stdLibs) [ on $(1) return $(NEEDLIBS) ] ;
|
||||
NEEDLIBS on $(1) = [ on $(1) return $(NEEDLIBS) ] $(stdLibs) ;
|
||||
Depends $(1) : $(stdLibs) $(beginGlue) $(endGlue) ;
|
||||
LINKFLAGS on $(1) = [ on $(1) return $(LINKFLAGS) ] -nostdlib ;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user