From owner-svn-src-all@freebsd.org Sun Jun 28 15:16:00 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 7C21698F8B1 for ; Sun, 28 Jun 2015 15:16:00 +0000 (UTC) (envelope-from joerg@britannica.bec.de) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1A6B11D5B for ; Sun, 28 Jun 2015 15:15:59 +0000 (UTC) (envelope-from joerg@britannica.bec.de) X-RZG-AUTH: :JiIXek6mfvEEUpFQdo7Fj1/zg48CFjWjQv0cW+St/nW/auYssSp3lv/q2GCaW6U= X-RZG-CLASS-ID: mo00 Received: from britannica.bec.de (ip-2-207-195-115.web.vodafone.de [2.207.195.115]) by smtp.strato.de (RZmta 37.8 DYNA|AUTH) with ESMTPSA id V02217r5SFFvq6b (using TLSv1 with cipher AES256-SHA (256 bits)) (Client did not present a certificate) for ; Sun, 28 Jun 2015 17:15:57 +0200 (CEST) Received: by britannica.bec.de (sSMTP sendmail emulation); Sun, 28 Jun 2015 17:15:56 +0200 Date: Sun, 28 Jun 2015 17:15:56 +0200 From: Joerg Sonnenberger To: svn-src-all@freebsd.org Subject: Re: svn commit: r284898 - in head: . share/mk Message-ID: <20150628151556.GB14505@britannica.bec.de> References: <201506272328.t5RNSvQS063168@svn.freebsd.org> <260A448A-7195-49E6-8CCD-9F0753B61A18@gmail.com> <20150628074103.GA68142@ivaldir.etoilebsd.net> <20150628074931.GB68142@ivaldir.etoilebsd.net> <20150628085714.GC68142@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) 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 15:16:00 -0000 On Sun, Jun 28, 2015 at 11:48:48AM +0200, Dimitry Andric wrote: > What is actually the perceived problem with having paths in those linker > scripts? If you use --sysroot, the libraries are searched relative to > that sysroot, right? Depends. A plain absolute path stays a plain absolute path. One prefixed with = is adjusted accordingly. E.g. you want to get SEARCH_DIR("=/usr/lib"); and not "/usr/lib". Joerg