pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/check-portability



Module Name:    pkgsrc
Committed By:   rillig
Date:           Fri Mar 13 08:17:18 UTC 2020

Modified Files:
        pkgsrc/pkgtools/check-portability: Makefile

Log Message:
pkgtools/check-portability: reduce dependencies

Since this is a very basic program, it should not depend on anything more
complicated, to avoid creating cyclic dependencies.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/pkgtools/check-portability/Makefile

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

Modified files:

Index: pkgsrc/pkgtools/check-portability/Makefile
diff -u pkgsrc/pkgtools/check-portability/Makefile:1.4 pkgsrc/pkgtools/check-portability/Makefile:1.5
--- pkgsrc/pkgtools/check-portability/Makefile:1.4      Thu Mar 12 08:42:34 2020
+++ pkgsrc/pkgtools/check-portability/Makefile  Fri Mar 13 08:17:18 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2020/03/12 08:42:34 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2020/03/13 08:17:18 rillig Exp $
 
 PKGNAME=       check-portability-19.4.1
 CATEGORIES=    pkgtools
@@ -9,14 +9,14 @@ HOMEPAGE=     # none
 COMMENT=       Check extracted files for typical portability issues
 LICENSE=       2-clause-bsd
 
-USE_TOOLS+=            pax
-CHECK_PORTABILITY_SKIP=        testdata/*
+USE_TOOLS+=            cp
+CHECK_PORTABILITY_SKIP=        * # avoid circular dependency
+CHECK_PERMS_SKIP=      * # avoid circular dependency
 USE_LANGUAGES=         c99
 USE_BSD_MAKEFILE=      yes
 AUTO_MKDIRS=           yes
 
 do-extract:
-       mkdir ${WRKSRC}
-       cd ${FILESDIR} && ${PAX} -rw . ${WRKSRC}
+       cd ${FILESDIR} && ${CP} -R . ${WRKSRC}
 
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index