pkg(python): remove forced -j64 in favor of MAKEFLAGS

This commit is contained in:
Thomas Hobson 2021-02-27 20:47:33 +13:00
parent cf67bd94e9
commit 99dee4c904
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ ${ENV_FILE}:
${BIN_DIR}: ${BUILD_DIR}Python-${VERSION}/
cd $< && ./configure --prefix /
$(MAKE) -j64 -C $<
DESTDIR=../${PKG_SLUG} $(MAKE) -j64 -C $< altinstall || true
$(MAKE) -C $<
DESTDIR=../${PKG_SLUG} $(MAKE) -C $< altinstall || true
${BUILD_DIR}Python-${VERSION}.tar.gz:
curl "https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz" -o $@