Received: by mail.netbsd.org (Postfix, from userid 605) id 4D48B84D79; Sat, 26 Sep 2020 11:24:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C947B84D71 for ; Sat, 26 Sep 2020 11:24:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id my6lPD0oOjCx for ; Sat, 26 Sep 2020 11:24:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 49E0484CCD for ; Sat, 26 Sep 2020 11:24:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43082FB28; Sat, 26 Sep 2020 11:24:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16011194584780" MIME-Version: 1.0 Date: Sat, 26 Sep 2020 11:24:18 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/lang/baci To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200926112418.43082FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16011194584780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Sep 26 11:24:18 UTC 2020 Modified Files: pkgsrc/lang/baci: distinfo Added Files: pkgsrc/lang/baci/patches: patch-pascomp_Makefile Log Message: (lang/baci) Add adhoc patch (mv to cp) to fix build problem To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/baci/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/lang/baci/patches/patch-pascomp_Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16011194584780 Content-Disposition: inline Content-Length: 1879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/baci/distinfo diff -u pkgsrc/lang/baci/distinfo:1.10 pkgsrc/lang/baci/distinfo:1.11 --- pkgsrc/lang/baci/distinfo:1.10 Tue Dec 29 23:34:43 2015 +++ pkgsrc/lang/baci/distinfo Sat Sep 26 11:24:17 2020 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2015/12/29 23:34:43 dholland Exp $ +$NetBSD: distinfo,v 1.11 2020/09/26 11:24:17 mef Exp $ SHA1 (bacisrc.tar.gz) = 3b655bcbd2823047f3f92e6f2d3d12bc7eaa772d RMD160 (bacisrc.tar.gz) = c484e3c05734cac1dd394d9b09b256e2a2626897 @@ -23,3 +23,4 @@ SHA1 (patch-al) = 1cf7c2507a074c00f5ec0b SHA1 (patch-am) = 3db7ead6cd08f0aa172ad62d2b8ef1b6b2a5fe63 SHA1 (patch-include_computil.h) = 2c1c48e3ff6be7a79e4990ad8f1adf0f8f92c1e8 SHA1 (patch-lib_computil.c) = 7b3bd08b60986a97c4490a8c06b5f78c977fde62 +SHA1 (patch-pascomp_Makefile) = 765e4630697e0b9e8bf82c3810f8c8114bfef5ec Added files: Index: pkgsrc/lang/baci/patches/patch-pascomp_Makefile diff -u /dev/null pkgsrc/lang/baci/patches/patch-pascomp_Makefile:1.1 --- /dev/null Sat Sep 26 11:24:18 2020 +++ pkgsrc/lang/baci/patches/patch-pascomp_Makefile Sat Sep 26 11:24:18 2020 @@ -0,0 +1,26 @@ +$NetBSD: patch-pascomp_Makefile,v 1.1 2020/09/26 11:24:18 mef Exp $ + +------------------------ +gcc -g -Wall -c date.c +bison -tvd bapascal.y +mv -f bapascal.tab.c gram.c +mv -f bapascal.tab.h ytab.h +chmod 444 gram.c ytab.h +gcc -g -Wall -c gram.c +bapascal.tab.c:217:10: fatal error: bapascal.tab.h: No such file or directory +compilation terminated. +------------------------ +Above is a liitle bit strange, change mv to cp + + +--- pascomp/Makefile.orig 1999-08-31 16:19:13.000000000 +0000 ++++ pascomp/Makefile +@@ -23,7 +23,7 @@ date.o: + gram.o ytab.h: bapascal.y $(INCLS) + bison -tvd bapascal.y + mv -f bapascal.tab.c gram.c +- mv -f bapascal.tab.h ytab.h ++ cp -f bapascal.tab.h ytab.h + chmod 444 gram.c ytab.h + $(CC) $(CFLAGS) -c gram.c + --_----------=_16011194584780--