diff options
| author | Felix Fietkau | 2025-03-24 11:05:10 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2025-03-24 11:05:16 +0000 |
| commit | f482f6d98eea1465dff5f2d39c32a2d13b0aa10b (patch) | |
| tree | 8e26ddf10f10c36b2e30e07cff2a3f7fe0d0ec07 | |
| parent | c3f2bb7afc72a6b6af99ff466bc22d9f123e36ab (diff) | |
| download | openwrt-f482f6d98eea1465dff5f2d39c32a2d13b0aa10b.tar.gz | |
uboot-tools: disable python build to fix build error
Signed-off-by: Felix Fietkau <nbd@nbd.name>
| -rw-r--r-- | package/boot/uboot-tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/boot/uboot-tools/Makefile b/package/boot/uboot-tools/Makefile index dd47d84a59..cef9111138 100644 --- a/package/boot/uboot-tools/Makefile +++ b/package/boot/uboot-tools/Makefile @@ -80,7 +80,8 @@ endef MAKE_FLAGS += \ ARCH="sandbox" \ TARGET_CFLAGS="$(TARGET_CFLAGS)" \ - TARGET_LDFLAGS="$(TARGET_LDFLAGS)" + TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \ + NO_PYTHON=1 define Build/Compile $(call Build/Compile/Default,envtools) |