projects
/
openwrt
/
staging
/
wigyori.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a728cf
)
ucode: another fix for host installation
author
Felix Fietkau
<
[email protected]
>
Fri, 20 Sep 2024 09:23:24 +0000
(11:23 +0200)
committer
Felix Fietkau
<
[email protected]
>
Fri, 20 Sep 2024 09:47:00 +0000
(11:47 +0200)
The previous host installation fix accidentally moved the rpath settings
out of CMAKE_HOST_OPTIONS and into CMAKE_OPTIONS.
Fixes: ae42ecaad4e7 ("ucode: fix host installation")
Signed-off-by: Felix Fietkau <
[email protected]
>
package/utils/ucode/Makefile
patch
|
blob
|
history
diff --git
a/package/utils/ucode/Makefile
b/package/utils/ucode/Makefile
index e1703cdca18f77bd70fdc81bb0e4eef8c15bdaf4..9dcd5ff3ab0a486ef8d80398cffe0e5d6d164bc3 100644
(file)
--- a/
package/utils/ucode/Makefile
+++ b/
package/utils/ucode/Makefile
@@
-26,7
+26,9
@@
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/cmake.mk
CMAKE_OPTIONS += \
- -DSOVERSION=$(PKG_ABI_VERSION) \
+ -DSOVERSION=$(PKG_ABI_VERSION)
+
+CMAKE_HOST_OPTIONS += \
-DCMAKE_SKIP_RPATH=FALSE \
-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOSTPKG}/lib"