pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-llvmlite



Module Name:    pkgsrc
Committed By:   riastradh
Date:           Fri Jan 24 07:51:35 UTC 2025

Modified Files:
        pkgsrc/devel/py-llvmlite: Makefile

Log Message:
devel/py-llvmlite: Pass ${_MAKE_JOBS}, not -j${MAKE_JOBS}.

If MAKE_JOBS is undefined or empty, -j${MAKE_JOBS} confuses bmake(1),
and turns gmake(1) into a fork bomb.

No functional change intended for builds that succeeded.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/py-llvmlite/Makefile

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

Modified files:

Index: pkgsrc/devel/py-llvmlite/Makefile
diff -u pkgsrc/devel/py-llvmlite/Makefile:1.30 pkgsrc/devel/py-llvmlite/Makefile:1.31
--- pkgsrc/devel/py-llvmlite/Makefile:1.30      Mon Nov 11 07:28:15 2024
+++ pkgsrc/devel/py-llvmlite/Makefile   Fri Jan 24 07:51:35 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.30 2024/11/11 07:28:15 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2025/01/24 07:51:35 riastradh Exp $
 
 DISTNAME=      llvmlite-0.43.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -91,7 +91,7 @@ pre-configure:
        ${LN} -s libunwind-${LLVM_VERSION}.src ${WRKDIR}/libunwind
        cd ${WRKDIR} &&  mkdir build && cd build && \
          cmake -G'Unix Makefiles' ${LLVM_CMAKE_CONFIGURE_ARGS} ../llvm && \
-         ${MAKE} -j${MAKE_JOBS} && \
+         ${MAKE} ${_MAKE_JOBS} && \
          ${MAKE} install
        ${SED} -e 's/ -stdlib=libc++//' ${WRKSRC}/ffi/Makefile.freebsd > ${WRKSRC}/ffi/Makefile.netbsd
 



Home | Main Index | Thread Index | Old Index