From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Zeeshan Ali (Khattak)" Newsgroups: gmane.lisp.guile.user Subject: issue with GUILE_SITE_DIR m4 macro Date: Sun, 25 Jan 2009 22:44:11 +0200 Message-ID: <38294b740901251244w5c13a4do7bb1beba09e5135f@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1232916298 28432 80.91.229.12 (25 Jan 2009 20:44:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 25 Jan 2009 20:44:58 +0000 (UTC) To: Guile User Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Jan 25 21:46:09 2009 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LRBrb-0003mt-Gw for guile-user@m.gmane.org; Sun, 25 Jan 2009 21:45:52 +0100 Original-Received: from localhost ([127.0.0.1]:40224 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LRBqJ-0004Ew-Nr for guile-user@m.gmane.org; Sun, 25 Jan 2009 15:44:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LRBq3-0004Ep-AU for guile-user@gnu.org; Sun, 25 Jan 2009 15:44:15 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LRBq2-0004EI-Mg for guile-user@gnu.org; Sun, 25 Jan 2009 15:44:14 -0500 Original-Received: from [199.232.76.173] (port=33703 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LRBq2-0004Dv-Fx for guile-user@gnu.org; Sun, 25 Jan 2009 15:44:14 -0500 Original-Received: from yw-out-1718.google.com ([74.125.46.155]:9590) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LRBq2-0000Mx-5g for guile-user@gnu.org; Sun, 25 Jan 2009 15:44:14 -0500 Original-Received: by yw-out-1718.google.com with SMTP id 9so2304156ywk.66 for ; Sun, 25 Jan 2009 12:44:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=iVezprxwVPlu8uYF3qRz3sJ57piE/RSzmiYTunWjpyc=; b=j2wcqWyO5A8S7QX47Hs3AooVb86dfaWv0aqT/Ygi1ZC7bvMTCAQBWd/DDVF98ltwGP JCGUWPh90JAsIxRJKMsh0oFsClgnMVEYNncMQuefHKr5ooqr8k2mXcXBED+WhPq6x5t9 tDhY6XjSMW2Ajo+Z3XyiS0EjJBKCrzVxavUVk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=glTl0dbiiKzP/CLe29EKByZVnhYbqR7AVCxUsAxeGLXmf5krbpII+vk4J+PS5zTxy6 764+6lao2Dx6fDpCC7rOxyyERhIzLQbCDqZ+fmCpL+xmW3doyyO85+mXgRsw+F3ReCG7 LpFv2JWhXcXZ1F9wqvwsYTT77lLg/qW/cppQA= Original-Received: by 10.90.96.1 with SMTP id t1mr696323agb.73.1232916251964; Sun, 25 Jan 2009 12:44:11 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7091 Archived-At: Hi! I am using GUILE_SITE_DIR m4 macro in xchat-guile to find out where should i install my guile module. It works perfectly fine except that `make distcheck` fails: test -z "/usr/share/guile/site/xchat-guile" || /bin/mkdir -p "/usr/share/guile/site/xchat-guile" /usr/bin/install -c '../plugin-system.scm' '/usr/share/guile/site/xchat-guile/plugin-system.scm' /usr/bin/install: cannot create regular file `/usr/share/guile/site/xchat-guile/plugin-system.scm': Permission denied make[3]: *** [install-schemeSCRIPTS] Error 1 make[3]: Leaving directory `/home/zeenix/downloads/xchat-guile/xchat-guile-0.2/_build' make[2]: *** [install-am] Error 2 make[2]: Leaving directory `/home/zeenix/downloads/xchat-guile/xchat-guile-0.2/_build' make[1]: *** [install-recursive] Error 1 make[1]: Leaving directory `/home/zeenix/downloads/xchat-guile/xchat-guile-0.2/_build' make: *** [distcheck] Error 2 I am no autotools expert but i think DESTDIR env variable is not getting respected. Here is my Makefile.am: http://gitorious.org/projects/xchat-guile/repos/mainline/blobs/master/Makefile.am -- Regards, Zeeshan Ali (Khattak) FSF member#5124