Received: by mail.netbsd.org (Postfix, from userid 605) id 3D19D84D61; Mon, 20 Apr 2020 13:23:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BA06E84D52 for ; Mon, 20 Apr 2020 13:23:20 +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 BIMLOXGTbZ8A for ; Mon, 20 Apr 2020 13:23:20 +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 1FF1184D02 for ; Mon, 20 Apr 2020 13:23:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 174C7FB27; Mon, 20 Apr 2020 13:23:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158738900073130" MIME-Version: 1.0 Date: Mon, 20 Apr 2020 13:23:20 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/sysutils/cdbkup To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200420132320.174C7FB27@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. --_----------=_158738900073130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Mon Apr 20 13:23:20 UTC 2020 Modified Files: pkgsrc/sysutils/cdbkup: Makefile Log Message: Skip portability for bash script To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/sysutils/cdbkup/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158738900073130 Content-Disposition: inline Content-Length: 785 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/cdbkup/Makefile diff -u pkgsrc/sysutils/cdbkup/Makefile:1.29 pkgsrc/sysutils/cdbkup/Makefile:1.30 --- pkgsrc/sysutils/cdbkup/Makefile:1.29 Sun Aug 11 13:23:03 2019 +++ pkgsrc/sysutils/cdbkup/Makefile Mon Apr 20 13:23:19 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2019/08/11 13:23:03 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2020/04/20 13:23:19 joerg Exp $ DISTNAME= cdbkup-1.0 PKGREVISION= 14 @@ -19,6 +19,9 @@ CONFIGURE_ENV+= GNUTAR=${TOOLS_GTAR:Q} CONFIGURE_ENV+= ac_cv_path_BZIP=${TOOLS_PATH.bzip2:Q} CONFIGURE_ENV+= ac_cv_path_GZIP=${TOOLS_PATH.gzip:Q} +# Actually a bash script, would need REPLACE_BASH for running +CHECK_PORTABILITY_SKIP+= test/test-suite.in + .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" --_----------=_158738900073130--