From b76fa19b26027f8472617598c19b9e071eef81bb Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Sat, 27 May 2023 19:43:57 +0800 Subject: 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 --- lang/python/python-evdev/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lang/python/python-evdev') diff --git a/lang/python/python-evdev/Makefile b/lang/python/python-evdev/Makefile index bab726b54..4623adae7 100644 --- a/lang/python/python-evdev/Makefile +++ b/lang/python/python-evdev/Makefile @@ -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)) -- cgit v1.2.3