diff options
| author | Hauke Mehrtens | 2024-07-29 22:34:14 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-30 19:42:33 +0000 |
| commit | 4992946bc9a40f9df4594bb05163dc34c2039400 (patch) | |
| tree | 5c22cc3ec721dd651289e5a66a61b3bfd81ef437 | |
| parent | 9ac50c0aa33f0d0add63a49433147b813b4ce44d (diff) | |
| download | openwrt-4992946bc9a40f9df4594bb05163dc34c2039400.tar.gz | |
firmware-utils: Mark as nonshared to build in step 1
Mark the package as nonshared to build it in the target specific build
step 1 of the build bots instead of the architecture generic build step
2. In the build step 2 it may be left out if we build it using a
different target.
Fixes: 24d6abe2d7cd ("firmware-utils: new package replacing otrx")
Link: https://github.com/openwrt/openwrt/pull/16031
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/utils/firmware-utils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/utils/firmware-utils/Makefile b/package/utils/firmware-utils/Makefile index 2d9dbc5fce..3dcac6bcf1 100644 --- a/package/utils/firmware-utils/Makefile +++ b/package/utils/firmware-utils/Makefile @@ -11,6 +11,7 @@ PKG_SOURCE_DATE:=2024-06-20 PKG_SOURCE_VERSION:=6ac44974185a3e7dc7848e97b964339948e817a7 PKG_MIRROR_HASH:=ee5b29f45593750a6806cfa7cad3fd766b321b44107a6b481b890efe82a7dbf5 +PKG_FLAGS:=nonshared PKG_BUILD_DEPENDS:=openssl zlib include $(INCLUDE_DIR)/package.mk |