Merge pull request #2212 from jefferyto/python-host-package-path
python packages: update host install path
This commit is contained in:
commit
76fcece865
4 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Compile
|
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
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
|
|
@ -53,7 +53,7 @@ define Build/InstallDev
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Compile
|
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
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
|
|
@ -47,7 +47,7 @@ define Build/Compile
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Compile
|
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
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
|
|
@ -60,7 +60,7 @@ endef
|
||||||
|
|
||||||
define Host/Compile
|
define Host/Compile
|
||||||
$(call Build/Compile/HostPyMod,,\
|
$(call Build/Compile/HostPyMod,,\
|
||||||
install --root="$(STAGING_DIR_HOST)" --prefix="" \
|
install --root="$(STAGING_DIR_HOST)" --prefix="/usr" \
|
||||||
--single-version-externally-managed \
|
--single-version-externally-managed \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
Loading…
Reference in a new issue