diff options
author | Hirokazu MORIKAWA <morikw2@gmail.com> | 2021-07-07 18:25:48 +0900 |
---|---|---|
committer | Hirokazu MORIKAWA <morikw2@gmail.com> | 2021-07-07 18:25:48 +0900 |
commit | ed818a9fdbb40d4cdfa2ce90d9d89f483ce8a3b3 (patch) | |
tree | d47de8da70318feb2dc345381231b535dfa0be0b | |
parent | 497a1c52c352d8a2481d57d1b68c7169806fb87d (diff) |
libupm: Workaround for errors with GCC11
https://github.com/openwrt/packages/issues/16060
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
-rw-r--r-- | libs/libupm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/libupm/Makefile b/libs/libupm/Makefile index 7fbf278ec..a48247ffd 100644 --- a/libs/libupm/Makefile +++ b/libs/libupm/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libupm PKG_VERSION:=2.0.0 -PKG_RELEASE:=5 +PKG_RELEASE:=6 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/intel-iot-devkit/upm/tar.gz/v$(PKG_VERSION)? @@ -54,6 +54,7 @@ UPM_MODULES:= \ CMAKE_OPTIONS += \ -DBUILDSWIGNODE=OFF \ + -DWERROR=OFF \ -DPYTHON2LIBS_FOUND=FALSE \ -DPYTHON2INTERP_FOUND=FALSE \ |