python-packages: Replace --global-option with --build-option

setuptools 64.0.0 deprecated the use of --global-option to pass build
parameters[1]. This replaces the use of --global-option with
--build-option.

[1]: https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit b76fa19b26)
This commit is contained in:
Jeffery To
2023-05-27 19:43:57 +08:00
committed by Rosen Penev
parent d6cc46e2c2
commit 1a3df95f7e
2 changed files with 15 additions and 15 deletions

View File

@@ -40,10 +40,10 @@ endef
LINUX_EVDEV_HEADERS="$(LINUX_DIR)/include/uapi/linux/input.h:$(LINUX_DIR)/include/uapi/linux/input-event-codes.h"
PYTHON3_PKG_BUILD_CONFIG_SETTINGS:= \
--global-option=build \
--global-option=build_ecodes \
--global-option=--evdev-headers="$(LINUX_EVDEV_HEADERS)" \
--global-option=build_ext
--build-option=build \
--build-option=build_ecodes \
--build-option=--evdev-headers="$(LINUX_EVDEV_HEADERS)" \
--build-option=build_ext
$(eval $(call Py3Package,python3-evdev))
$(eval $(call BuildPackage,python3-evdev))