diff options
| author | David Bauer | 2024-09-15 01:26:58 +0000 |
|---|---|---|
| committer | David Bauer | 2024-09-15 01:32:18 +0000 |
| commit | 3b85719b62d4c09fa24e5aa193b96b69c26aace3 (patch) | |
| tree | 8c43af541884f381591ec3fd53bacaeebec37faf | |
| parent | 461102d99cdd5e380e3b23105e69d939199ca6bc (diff) | |
| download | openwrt-3b85719b62d4c09fa24e5aa193b96b69c26aace3.tar.gz | |
ucode: fix missing backslash
Fixes: ae42ecaad4e7 ("ucode: fix host installation")
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit 9d663c7435752bf17ecec4bfc66c73cde55ed04c)
| -rw-r--r-- | package/utils/ucode/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/utils/ucode/Makefile b/package/utils/ucode/Makefile index b048dcfcec..7fc5e9b071 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" |