From 51b3b53e711829b6e24b84c5affe44e2ebf89c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sat, 22 Apr 2006 16:51:24 +0000 Subject: [PATCH] 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 --- build/jam/MainBuildRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/MainBuildRules b/build/jam/MainBuildRules index 53b828392e..74bca36d27 100644 --- a/build/jam/MainBuildRules +++ b/build/jam/MainBuildRules @@ -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 ; }