diff options
| author | Robert Marko | 2024-11-04 17:20:06 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-11-05 09:58:37 +0000 |
| commit | 4ec95518de3cf29d85136721921355f4cd2f9b35 (patch) | |
| tree | b3b6a600e1ca172354b632ffe22ef28a78769457 | |
| parent | a923d1f9eca8393656ec18430366877b196a1583 (diff) | |
| download | openwrt-4ec95518de3cf29d85136721921355f4cd2f9b35.tar.gz | |
nu801: 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: #16857
Link: https://github.com/openwrt/openwrt/pull/16859
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/system/gpio-cdev/nu801/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/system/gpio-cdev/nu801/Makefile b/package/system/gpio-cdev/nu801/Makefile index 82c04ccb41..7724cd808b 100644 --- a/package/system/gpio-cdev/nu801/Makefile +++ b/package/system/gpio-cdev/nu801/Makefile @@ -3,6 +3,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nu801 +PKG_FLAGS:=nonshared PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git |