diff options
| author | Hauke Mehrtens | 2024-07-29 22:32:10 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-30 19:42:33 +0000 |
| commit | 54258c396f8ff0b159870a610d9ce16aee02c342 (patch) | |
| tree | f94b55c04a0563a6287cf140d47424dc4fab9337 | |
| parent | 9a981ffb515964ee69a014b4f085ace764169f73 (diff) | |
| download | openwrt-54258c396f8ff0b159870a610d9ce16aee02c342.tar.gz | |
kobs-ng: 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: 1eb21b87bdd6 ("kobs-ng: add new package")
Link: https://github.com/openwrt/openwrt/pull/16031
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/boot/kobs-ng/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/boot/kobs-ng/Makefile b/package/boot/kobs-ng/Makefile index 68e6ff170c..261cd92eab 100644 --- a/package/boot/kobs-ng/Makefile +++ b/package/boot/kobs-ng/Makefile @@ -18,6 +18,7 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/imx-kobs-$(PKG_VERSION) PKG_LICENSE:=GPLv2 PKG_LICENSE_FILES:=COPYING +PKG_FLAGS:=nonshared include $(INCLUDE_DIR)/package.mk |