From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bruce Korb Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] do not augment environment Date: Mon, 01 Oct 2012 07:39:11 -0700 Message-ID: <5069AB0F.4010805@gnu.org> References: <505CF9FC.9060007@gmail.com> <5069022C.9040600@netris.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1349102382 3732 80.91.229.3 (1 Oct 2012 14:39:42 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 1 Oct 2012 14:39:42 +0000 (UTC) Cc: Guile Development To: Mark H Weaver Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Oct 01 16:39:46 2012 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TIh9l-0008Og-Nl for guile-devel@m.gmane.org; Mon, 01 Oct 2012 16:39:37 +0200 Original-Received: from localhost ([::1]:40947 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIh9g-0001fC-9p for guile-devel@m.gmane.org; Mon, 01 Oct 2012 10:39:32 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:48854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIh9V-0001e3-OB for guile-devel@gnu.org; Mon, 01 Oct 2012 10:39:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TIh9Q-0004xN-1S for guile-devel@gnu.org; Mon, 01 Oct 2012 10:39:21 -0400 Original-Received: from fencepost.gnu.org ([208.118.235.10]:51079) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TIh9P-0004xJ-UL for guile-devel@gnu.org; Mon, 01 Oct 2012 10:39:15 -0400 Original-Received: from adsl-76-254-31-152.dsl.pltn13.sbcglobal.net ([76.254.31.152]:54561 helo=[192.168.10.2]) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1TIh9O-0006ry-Mo; Mon, 01 Oct 2012 10:39:15 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120825 Thunderbird/15.0 In-Reply-To: <5069022C.9040600@netris.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.10 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:14922 Archived-At: Hi, P.S. On 09/30/12 19:38, Mark H Weaver wrote: > In the current code, SCM_LIB_DIR and SCM_EXTENSIONS_DIR are only > added to the library search path when GUILE_SYSTEM_EXTENSIONS_PATH > is not set. Your patch mishandles this, because it _always_ acts > as if SCM_LIB_DIR and SCM_EXTENSIONS_DIR have been added to the search path. Always inserting "GUILE_SYSTEM_EXTENSIONS_PATH=" into the environment is a better fix than erasing LD_LIBRARY_PATH, but I hadn't read and digested the source. Thanks for the pointer.