lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 016ecd0d5d0c2b2eeec3fd690f79be50da794834
parent 02a1e6dad1273d7243ae9ddd66f2f1175295ca06
Author: Steven Barth <steven@midlink.org>
Date:   Thu, 20 Aug 2015 07:40:53 +0200

Merge pull request #1675 from sairon/python-setuptools-revamp-installation

python-setuptools: revamp installation procedure, update to 18.1
Diffstat:
Mlang/python-setuptools/Makefile | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lang/python-setuptools/Makefile b/lang/python-setuptools/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=python-setuptools -PKG_VERSION:=18.0.1 +PKG_VERSION:=18.1 PKG_RELEASE:=1 PKG_SOURCE:=setuptools-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/setuptools/ -PKG_MD5SUM:=cecd172c9ff7fd5f2e16b2fcc88bba51 +PKG_MD5SUM:=f72e87f34fbf07f299f6cb46256a0b06 PKG_BUILD_DIR:=$(BUILD_DIR)/setuptools-$(PKG_VERSION) @@ -35,7 +35,8 @@ endef define Build/Compile $(call Build/Compile/PyMod,,\ - install --prefix="$(PKG_INSTALL_DIR)/usr" \ + install --root="$(PKG_INSTALL_DIR)" --prefix="/usr" \ + --single-version-externally-managed \ ) endef