From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Jan Nieuwenhuizen Newsgroups: gmane.lisp.guile.user Subject: Re: Nyacc patches for Mes to avoid bundling? Date: Fri, 12 May 2017 08:00:01 +0200 Organization: AvatarAcademy.nl Message-ID: <87k25mvcm6.fsf@gnu.org> References: <87bmr93jot.fsf@gnu.org> <1B4686A9-DAC0-4DD4-B11B-78629E0C5339@gmail.com> <20B29595-EC72-4660-815A-0261AD88B519@gmail.com> <87shkj96qi.fsf@gnu.org> <500F7340-E32F-4F6D-89EB-66B94DFF1754@gmail.com> <87o9v78m2y.fsf@gnu.org> <87wp9u6kn2.fsf@gnu.org> <1153D978-92D7-4F34-A5EB-0A0287F4009F@gmail.com> <87pofm6j2j.fsf@gnu.org> <87k25t6r05.fsf@gnu.org> <70FFAE28-410D-4D1A-AF9C-21FC52C895C2@gmail.com> <87lgq7e4vy.fsf@gnu.org> <87fugc5sus.fsf@gnu.org> <807A3122-29DE-457D-9C43-195957D853CB@gmail.com> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: blaine.gmane.org 1494568857 9004 195.159.176.226 (12 May 2017 06:00:57 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 12 May 2017 06:00:57 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) Cc: guile-user@gnu.org To: Matt Wette Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri May 12 08:00:52 2017 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d93dE-0002DC-IY for guile-user@m.gmane.org; Fri, 12 May 2017 08:00:52 +0200 Original-Received: from localhost ([::1]:51533 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d93dK-0002xn-8H for guile-user@m.gmane.org; Fri, 12 May 2017 02:00:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d93cj-0002xQ-PK for guile-user@gnu.org; Fri, 12 May 2017 02:00:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d93cg-0000SJ-OZ for guile-user@gnu.org; Fri, 12 May 2017 02:00:21 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37692) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d93cT-0000ED-Rn; Fri, 12 May 2017 02:00:05 -0400 Original-Received: from peder.onsbrabantnet.nl ([88.159.206.46]:39756 helo=dundal.peder.onsbrabantnet.nl) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1d93cT-00085o-0A; Fri, 12 May 2017 02:00:05 -0400 X-Url: http://AvatarAcademy.nl In-Reply-To: (Matt Wette's message of "Thu, 11 May 2017 20:52:56 -0700") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 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.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:13711 Archived-At: --=-=-= Content-Type: text/plain Matt Wette writes: >> Got it. Will add fixes. Should show up in release after 0.78.1. >> > > 0.78.2 released > > `make check' now works Thanks! Almost there...I need the attached patch. Wondering why I need -L test-suite? Also Not sure why the commenting-out of the make rule with only the first line does not work for me. $ make --version GNU Make 4.2.1 $ bash --version GNU bash, version 4.4.12(1)-release (x86_64-unknown-linux-gnu) janneke --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-check-Set-load-path-disable-auto-compile-typo.patch >From 445540556f642a6f15ffef276a8fe69801ebbb86 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Fri, 12 May 2017 07:26:49 +0200 Subject: [PATCH] check: Set load-path, disable auto-compile, typo. * test-suite/nyacc/Makefile.nyacc (TEST_ENVIRONMENT): Set load-path, disable auto-compile. Fixes loading (test-suite lib). Fixes attempt to write in $HOME on Guix build. * test-suite/nyacc/lang/Makefile.nyacc (TESTS_ENVIRONMENT): Likewise. * test-suite/nyacc/lang/c99/Makefile.nyacc (check-TESTS): Comment-out all lines. --- Makefile.in | 1 + test-suite/nyacc/Makefile.nyacc | 2 +- test-suite/nyacc/lang/Makefile.nyacc | 2 +- test-suite/nyacc/lang/c99/Makefile.nyacc | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index bb3c213..5c7a366 100644 --- a/Makefile.in +++ b/Makefile.in @@ -31,3 +31,4 @@ check: (cd test-suite/nyacc; make -f Makefile.nyacc check) # --- last line --- + diff --git a/test-suite/nyacc/Makefile.nyacc b/test-suite/nyacc/Makefile.nyacc index c52b8aa..0540b11 100644 --- a/test-suite/nyacc/Makefile.nyacc +++ b/test-suite/nyacc/Makefile.nyacc @@ -10,7 +10,7 @@ SUBDIRS = lang TESTS_ENVIRONMENT = \ - guile -L `pwd`/../../module + guile -L `pwd`/../../module -L `pwd`/.. --no-auto-compile TESTS = \ lex-01.test \ diff --git a/test-suite/nyacc/lang/Makefile.nyacc b/test-suite/nyacc/lang/Makefile.nyacc index 0a3167b..61342ca 100644 --- a/test-suite/nyacc/lang/Makefile.nyacc +++ b/test-suite/nyacc/lang/Makefile.nyacc @@ -10,7 +10,7 @@ SUBDIRS = c99 TESTS_ENVIRONMENT = \ - guile -L `pwd`/../../../module + guile -L `pwd`/../../../module -L `pwd`/../.. --no-auto-compile TESTS = \ util.test \ diff --git a/test-suite/nyacc/lang/c99/Makefile.nyacc b/test-suite/nyacc/lang/c99/Makefile.nyacc index d6be58e..974fe9e 100644 --- a/test-suite/nyacc/lang/c99/Makefile.nyacc +++ b/test-suite/nyacc/lang/c99/Makefile.nyacc @@ -27,7 +27,7 @@ check-TESTS: $(TESTS) $(TESTS_ENVIRONMENT) $$test; \ done @#for dir in $(SUBDIRS); do \ - (cd $$dir; make -f Makefile.nyacc check-TESTS); \ - done + # (cd $$dir; make -f Makefile.nyacc check-TESTS); \ + #done # --- last line --- -- 2.12.2 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable --=20 Jan Nieuwenhuizen | GNU LilyPond http://lilypond.org Freelance IT http://JoyofSource.com | Avatar=C2=AE http://AvatarAcademy.nl= =20=20 --=-=-=--