diff options
author | Andre Heider <a.heider@gmail.com> | 2023-03-23 08:39:01 +0100 |
---|---|---|
committer | Andre Heider <a.heider@gmail.com> | 2023-04-08 08:38:54 +0200 |
commit | 565866a47210c9711c29173052063779b6d3bcfc (patch) | |
tree | 7a4b5a526fdee62534e64d6da3525ae7fb079b1d /admin | |
parent | c8e1dd7d6013700163b90896654d97d6d855a08b (diff) |
treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16
See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with
PKG_BUILD_FLAGS:=no-mips16" on the main repository.
Signed-off-by: Andre Heider <a.heider@gmail.com>
Diffstat (limited to 'admin')
-rw-r--r-- | admin/netdata/Makefile | 2 | ||||
-rw-r--r-- | admin/sudo/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/netdata/Makefile b/admin/netdata/Makefile index e471f27b2..5bee33424 100644 --- a/admin/netdata/Makefile +++ b/admin/netdata/Makefile @@ -24,7 +24,7 @@ PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-v$(PKG_VERSION) PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 PKG_FIXUP:=autoreconf -PKG_USE_MIPS16:=0 +PKG_BUILD_FLAGS:=no-mips16 include $(INCLUDE_DIR)/package.mk diff --git a/admin/sudo/Makefile b/admin/sudo/Makefile index 9b90d1fc5..8b67832ca 100644 --- a/admin/sudo/Makefile +++ b/admin/sudo/Makefile @@ -23,7 +23,7 @@ PKG_CPE_ID:=cpe:/a:todd_miller:sudo PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 -PKG_USE_MIPS16:=0 +PKG_BUILD_FLAGS:=no-mips16 include $(INCLUDE_DIR)/package.mk |