diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-03-06 22:29:15 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2023-04-24 16:22:03 +0800 |
commit | b1b008f42ff0a6da96b801e2eaf68be4e2f2b5bb (patch) | |
tree | a231436c11d9cbf74eda9d155b463d5595a77e37 /utils/i2c-tools/Makefile | |
parent | 63d13aa15f847d35d7f7473e1595de6c9d53f655 (diff) |
python-packages: Clean up build variables
* Rename PYTHON3_PKG_SETUP_VARS to PYTHON3_PKG_BUILD_VARS, and
PYTHON3_PKG_SETUP_DIR to PYTHON3_PKG_BUILD_PATH
The new variable names emphasize that these values apply to the new
build process.
* Remove PYTHON3_PKG_SETUP_ARGS set to the empty string
These were set to override the default arguments in the old build
process and not applicable to the new build process.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'utils/i2c-tools/Makefile')
-rw-r--r-- | utils/i2c-tools/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/i2c-tools/Makefile b/utils/i2c-tools/Makefile index f1a871dd9..cdae0d4eb 100644 --- a/utils/i2c-tools/Makefile +++ b/utils/i2c-tools/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=i2c-tools PKG_VERSION:=4.3 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/software/utils/i2c-tools @@ -67,8 +67,7 @@ define Package/python3-smbus/description This package contain the Python3 bindings for Linux SMBus access through i2c-dev. endef -PYTHON3_PKG_SETUP_ARGS:= -PYTHON3_PKG_SETUP_DIR:=py-smbus +PYTHON3_PKG_BUILD_PATH:=py-smbus PYTHON3_PKG_WHEEL_NAME:=smbus PYTHON3_PKG_WHEEL_VERSION:=1.1 |