[openwrt/openwrt] ucode: fix missing backslash

LEDE Commits lede-commits at lists.infradead.org
Sat Sep 14 18:31:35 PDT 2024


blocktrron pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/9d663c7435752bf17ecec4bfc66c73cde55ed04c

commit 9d663c7435752bf17ecec4bfc66c73cde55ed04c
Author: David Bauer <mail at david-bauer.net>
AuthorDate: Sun Sep 15 03:26:58 2024 +0200

    ucode: fix missing backslash
    
    Fixes: ae42ecaad4e7 ("ucode: fix host installation")
    
    Signed-off-by: David Bauer <mail at david-bauer.net>
---
 package/utils/ucode/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/utils/ucode/Makefile b/package/utils/ucode/Makefile
index 125f32ba65..e1703cdca1 100644
--- a/package/utils/ucode/Makefile
+++ b/package/utils/ucode/Makefile
@@ -8,7 +8,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=ucode
-PKG_RELEASE:=2
+PKG_RELEASE:=3
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL=https://github.com/jow-/ucode.git
@@ -26,7 +26,7 @@ include $(INCLUDE_DIR)/host-build.mk
 include $(INCLUDE_DIR)/cmake.mk
 
 CMAKE_OPTIONS += \
-	-DSOVERSION=$(PKG_ABI_VERSION)
+	-DSOVERSION=$(PKG_ABI_VERSION) \
 	-DCMAKE_SKIP_RPATH=FALSE \
 	-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOSTPKG}/lib"
 




More information about the lede-commits mailing list