lede-packages-rs

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

commit 76fcece865e58258b970deb16dfa3abc6690e78e
parent ad987faf15041c220a906f8c627269aad0194a78
Author: Hannu Nyman <hannu.nyman@iki.fi>
Date:   Wed, 30 Dec 2015 20:10:28 +0200

Merge pull request #2212 from jefferyto/python-host-package-path

python packages: update host install path
Diffstat:
Mlang/python-cffi/Makefile | 2+-
Mlang/python-ply/Makefile | 2+-
Mlang/python-pycparser/Makefile | 2+-
Mlang/python-setuptools/Makefile | 2+-
4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lang/python-cffi/Makefile b/lang/python-cffi/Makefile @@ -45,7 +45,7 @@ define Build/Compile endef define Host/Compile - $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOST)") + $(call Build/Compile/HostPyMod,,install --prefix="/usr" --root="$(STAGING_DIR_HOST)") endef define Host/Install diff --git a/lang/python-ply/Makefile b/lang/python-ply/Makefile @@ -53,7 +53,7 @@ define Build/InstallDev endef define Host/Compile - $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOST)") + $(call Build/Compile/HostPyMod,,install --prefix="/usr" --root="$(STAGING_DIR_HOST)") endef define Host/Install diff --git a/lang/python-pycparser/Makefile b/lang/python-pycparser/Makefile @@ -47,7 +47,7 @@ define Build/Compile endef define Host/Compile - $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOST)") + $(call Build/Compile/HostPyMod,,install --prefix="/usr" --root="$(STAGING_DIR_HOST)") endef define Host/Install diff --git a/lang/python-setuptools/Makefile b/lang/python-setuptools/Makefile @@ -60,7 +60,7 @@ endef define Host/Compile $(call Build/Compile/HostPyMod,,\ - install --root="$(STAGING_DIR_HOST)" --prefix="" \ + install --root="$(STAGING_DIR_HOST)" --prefix="/usr" \ --single-version-externally-managed \ ) endef