pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/archivers/bsdtar



Module Name:    pkgsrc
Committed By:   rillig
Date:           Thu Mar 12 20:50:30 UTC 2020

Modified Files:
        pkgsrc/archivers/bsdtar: Makefile

Log Message:
archivers/bsdtar: avoid circular dependency with PKG_DEVELOPER checks

bsdtar is used as the default extractor for distfiles. It is installed
very early in the pkgsrc lifecycle, directly after bootstrapping. At that
point, neither of checkperms nor check-portability may be installed yet.


To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 pkgsrc/archivers/bsdtar/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/bsdtar/Makefile
diff -u pkgsrc/archivers/bsdtar/Makefile:1.26 pkgsrc/archivers/bsdtar/Makefile:1.27
--- pkgsrc/archivers/bsdtar/Makefile:1.26       Sat Nov  2 22:54:25 2019
+++ pkgsrc/archivers/bsdtar/Makefile    Thu Mar 12 20:50:30 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2019/11/02 22:54:25 rillig Exp $
+# $NetBSD: Makefile,v 1.27 2020/03/12 20:50:30 rillig Exp $
 
 .include "../../archivers/libarchive/Makefile.common"
 .include "../../mk/bsd.prefs.mk"
@@ -46,6 +46,9 @@ FILESDIR.zlib?=               ${.CURDIR}/../../devel/
 
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1
 
+CHECK_PERMS=           no # avoid circular dependency
+CHECK_PORTABILITY=     no # avoid circular dependency
+
 .include "../../mk/bsd.prefs.mk"
 .if ${OS_VARIANT} == "SCOOSR5"
 # SCO OpenServer 5.0.7/3.2 has windows.h, and configure expects it for MS Windows.



Home | Main Index | Thread Index | Old Index