From f21e615c8b1a0f48e00b033abd6557ffc73d229e Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Fri, 4 May 2012 01:22:34 -0700 Subject: [PATCH] Find ld in the PATH when make_ld_r_object is called Previously ld was required to be alongside tease. ld is only required when operating on 64-bit OBJECT files or files that are having debugging information stripped (-S, -x). --- tease.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tease.c b/tease.c index 22c7315..181fec4 100644 --- a/tease.c +++ b/tease.c @@ -3962,7 +3962,7 @@ struct object *object) * Create the ld -r command line and execute it. */ reset_execute_list(); - add_execute_list_with_prefix("ld"); + add_execute_list("ld"); add_execute_list("-keep_private_externs"); add_execute_list("-r"); if(Sflag) -- 2.11.4.GIT