Received: by mail.netbsd.org (Postfix, from userid 605) id 70A29850D8; Tue, 3 May 2022 23:38:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A84C4850D8 for ; Tue, 3 May 2022 23:38:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QmwdJKtfyvBJ for ; Tue, 3 May 2022 23:38:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id EFE5184CEC for ; Tue, 3 May 2022 23:38:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF0B5FB1A; Tue, 3 May 2022 23:38:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165162111857140" MIME-Version: 1.0 Date: Tue, 3 May 2022 23:38:38 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/lang/tcl-expect To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20220503233838.DF0B5FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165162111857140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue May 3 23:38:38 UTC 2022 Modified Files: pkgsrc/lang/tcl-expect: Makefile.common Log Message: lang/tcl-expect: Quote version per pkglint This is almost certainly just a cleanup; OS_VERSION values are strings, not numbers. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/tcl-expect/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165162111857140 Content-Disposition: inline Content-Length: 836 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/tcl-expect/Makefile.common diff -u pkgsrc/lang/tcl-expect/Makefile.common:1.12 pkgsrc/lang/tcl-expect/Makefile.common:1.13 --- pkgsrc/lang/tcl-expect/Makefile.common:1.12 Fri Mar 20 11:57:56 2020 +++ pkgsrc/lang/tcl-expect/Makefile.common Tue May 3 23:38:38 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.12 2020/03/20 11:57:56 nia Exp $ +# $NetBSD: Makefile.common,v 1.13 2022/05/03 23:38:38 gdt Exp $ DISTNAME= expect${EXPECT_FNAME} MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=expect/} @@ -23,7 +23,7 @@ PLIST_SUBST+= BASEVER=${EXPECT_FNAME} INSTALL_UNSTRIPPED= yes # on IRIX 5.3 inttypes.h and sys/types.h are known to conflict -.if ${OPSYS} == "IRIX" && ${OS_VERSION} == 5.3 +.if ${OPSYS} == "IRIX" && ${OS_VERSION} == "5.3" CONFIGURE_ENV+= ac_cv_header_inttypes_h="no" .endif --_----------=_165162111857140--