From owner-svn-src-all@freebsd.org Sun Jun 28 07:46:36 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E72B98E4FA; Sun, 28 Jun 2015 07:46:36 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qk0-x22e.google.com (mail-qk0-x22e.google.com [IPv6:2607:f8b0:400d:c09::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC2331931; Sun, 28 Jun 2015 07:46:35 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by qkei195 with SMTP id i195so40298034qke.3; Sun, 28 Jun 2015 00:46:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Z7/wYe++e+1+Jr69n7GtTNOkUDRfwGuLaz15Wah6Q4Q=; b=ldZbGrBPULQxPMZ6Oq3AOxUgV++vZgH0b97nFmtNjatslZK2w0f9fIgPC5iitaoW0o Xwxip0eze+ocek2XVg4coJYGSH6PocApS/eQ+X5/j1fofKBeV/oiPF8ZGrnveSJeYfTZ VBPcFytRIvzpnn5F9Yk3NrFSbFPSdSMymp8hu/qml9VkFPRnQRUSTAXOhpoGD0WsByVR OFzeMtKHQr/tviC2ZsKVemZ0ZfQuudriaYfp6EVR8gbpeDHnKfdXsnNAejPRw0ZHL9Y2 5R56+voqp5wFVTZPVobQ7KB3SZZlxLavKcslBGj0+0RBuXGuW5yfhI2BwOrMt+j/3ubB OlAA== MIME-Version: 1.0 X-Received: by 10.55.23.17 with SMTP id i17mr20083574qkh.39.1435477594965; Sun, 28 Jun 2015 00:46:34 -0700 (PDT) Received: by 10.140.98.73 with HTTP; Sun, 28 Jun 2015 00:46:34 -0700 (PDT) In-Reply-To: <20150628074103.GA68142@ivaldir.etoilebsd.net> References: <201506272328.t5RNSvQS063168@svn.freebsd.org> <260A448A-7195-49E6-8CCD-9F0753B61A18@gmail.com> <20150628074103.GA68142@ivaldir.etoilebsd.net> Date: Sun, 28 Jun 2015 00:46:34 -0700 Message-ID: Subject: Re: svn commit: r284898 - in head: . share/mk From: NGie Cooper To: Baptiste Daroussin Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Jun 2015 07:46:36 -0000 On Sun, Jun 28, 2015 at 12:41 AM, Baptiste Daroussin wrote: > On Sat, Jun 27, 2015 at 08:37:23PM -0700, Garrett Cooper wrote: >> >> > On Jun 27, 2015, at 16:28, Baptiste Daroussin wrote: >> > >> > Author: bapt >> > Date: Sat Jun 27 23:28:56 2015 >> > New Revision: 284898 >> > URL: https://svnweb.freebsd.org/changeset/base/284898 >> > >> > Log: >> > Make all shared library a relative symlink >> > >> > This makes sysroot usable for cross building, it also removes the need for >> > _SHLIBDIRPREFIX (keeps its definition since picobsd uses it and I have no time >> > to test it) >> > >> > Differential Revision: https://reviews.freebsd.org/D2920 >> > Submitted by: imp, adrian >> > Tested by: adrian >> >> Thank you!!! Now all you need to do is fix the ldscripts (lib/libc, etc) to not have absolute paths. > They do not (as far as I know): > cat /usr/lib/libc.so > /* $FreeBSD: headlibc.ldscript 258283 2013-11-17 22:52:17Z peter $ */ > GROUP ( libc.so.7 libc_nonshared.a libssp_nonshared.a ) Ah, I'm guessing you fixed it [by accident/on purpose?] in this commit based on comments in bsd.lib.mk related to SHLIB_LINK... Cheers!