Browse Source

python packages: update host install path

Host installs should now go into $(STAGING_DIR_HOST)/usr to match
python-host.mk.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
lilik-openwrt-22.03
Jeffery To 9 years ago
parent
commit
7389d3d5c5
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      lang/python-cffi/Makefile
  2. +1
    -1
      lang/python-ply/Makefile
  3. +1
    -1
      lang/python-pycparser/Makefile
  4. +1
    -1
      lang/python-setuptools/Makefile

+ 1
- 1
lang/python-cffi/Makefile 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


+ 1
- 1
lang/python-ply/Makefile 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


+ 1
- 1
lang/python-pycparser/Makefile 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


+ 1
- 1
lang/python-setuptools/Makefile 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


Loading…
Cancel
Save