pkgsrc-Changes archive

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

CVS commit: pkgsrc/archivers/py-lz4



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Sep 30 09:05:41 UTC 2022

Modified Files:
        pkgsrc/archivers/py-lz4: Makefile

Log Message:
py-lz4: not make jobs safe

builds the same object files for different targets
e.g.
ld: build/temp.netbsd-9.0-amd64-cpython-310/lz4libs/lz4.o: file not recognized: file truncated


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/archivers/py-lz4/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/py-lz4/Makefile
diff -u pkgsrc/archivers/py-lz4/Makefile:1.34 pkgsrc/archivers/py-lz4/Makefile:1.35
--- pkgsrc/archivers/py-lz4/Makefile:1.34       Tue Jan  4 20:52:31 2022
+++ pkgsrc/archivers/py-lz4/Makefile    Fri Sep 30 09:05:40 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.34 2022/01/04 20:52:31 wiz Exp $
+# $NetBSD: Makefile,v 1.35 2022/09/30 09:05:40 wiz Exp $
 
 DISTNAME=      lz4-3.1.10
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -20,6 +20,11 @@ TEST_DEPENDS+=       ${PYPKGPREFIX}-test-cov-[
 
 PYTHON_VERSIONS_INCOMPATIBLE=  27
 
+# builds the same object files for different targets
+# e.g.
+# ld: build/temp.netbsd-9.0-amd64-cpython-310/lz4libs/lz4.o: file not recognized: file truncated
+MAKE_JOBS_SAFE=        no
+
 .include "../../archivers/lz4/buildlink3.mk"
 .include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index