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

python packages: update host install path
This commit is contained in:
Hannu Nyman 2015-12-30 20:10:28 +02:00
commit 76fcece865
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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