From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: James Crake-Merani Newsgroups: gmane.lisp.guile.user Subject: Scripting for installing a module Date: Fri, 1 Jul 2022 18:15:39 +0100 Message-ID: <20220701171539.uuwwdnvtkvsfetc4@jamescrake-meraniarch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10650"; mail-complaints-to="usenet@ciao.gmane.io" To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Fri Jul 01 19:16:44 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1o7KG3-0002YL-D3 for guile-user@m.gmane-mx.org; Fri, 01 Jul 2022 19:16:43 +0200 Original-Received: from localhost ([::1]:48342 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1o7KG1-0001r7-F9 for guile-user@m.gmane-mx.org; Fri, 01 Jul 2022 13:16:41 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:33310) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o7KFG-0001qN-AH for guile-user@gnu.org; Fri, 01 Jul 2022 13:15:59 -0400 Original-Received: from [178.62.35.155] (port=52790 helo=jamescm.co.uk) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1o7KFC-0002RX-FJ for guile-user@gnu.org; Fri, 01 Jul 2022 13:15:52 -0400 Original-Received: from localhost (host86-163-71-217.range86-163.btcentralplus.com [86.163.71.217]) by jamescm.co.uk (Postfix) with ESMTPSA id 0FF0560F13 for ; Fri, 1 Jul 2022 17:15:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=jamescm.co.uk; s=mail; t=1656695744; bh=y/W1eAL7ey0PHok1h+DXZ7rZFcF73KWSAAWuqQ9CVOI=; h=Date:From:To:Subject:From; b=WPSf9RH/08nvQ6l2YToZlfUvtirS1D7XZSaGyuDIA80VWBhUrZP0elZXaB2ds1Qs3 Pk2JCzb9KMeWoTSl8DoE9kIOYHOxW3Oq8lOorLbry4/915GXPK2X8SYOve6f//WcnX ogueozD7YwnuGJlB4hdDhFLAObNJyuvbv4E8Ji0hldiQmGTofFYkepSW2WFmZ9+uGh XRteFrNIOv1a1lRoigdHe9ulbF3oTKhV4ZVBZAzAWUZ5UoUttrzcp4xur2zU5LwZ20 B5hL/vaeU72MiMWZK7QGwLbsEuaj1VS3EvO04V3OmbsYL7HY/p1Fr9VRs5eA3Q2anC MAVaByc8pRQsw== Content-Disposition: inline X-Host-Lookup-Failed: Reverse DNS lookup failed for 178.62.35.155 (failed) Received-SPF: pass client-ip=178.62.35.155; envelope-from=james@jamescm.co.uk; helo=jamescm.co.uk X-Spam_score_int: -8 X-Spam_score: -0.9 X-Spam_bar: / X-Spam_report: (-0.9 / 5.0 requ) BAYES_00=-1.9, DKIM_INVALID=0.1, DKIM_SIGNED=0.1, RDNS_NONE=0.793, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:18377 Archived-At: Hello, I was just wondering what approach people tend to take when writing a script which installs a module onto the load-path. I understand this path might be different on different machines so how do you make sure the module is installed in the right path? Would you use something like a Makefile? Thanks.