diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-02-13 03:14:30 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-02-13 03:14:30 +0900 |
| commit | b746e352e546a0fdde9f26d124256afba33e30fb (patch) | |
| tree | 9e5ddc15f88e7155a735e9759bfa85446f49e7e5 /internal/rosa | |
| parent | c620d88dce8b8a95a36542bbb76ff97c076cf10f (diff) | |
internal/rosa/zstd: fix libdir
CMake implicitly changes it to lib64 which is not supported.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa')
| -rw-r--r-- | internal/rosa/zstd.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/rosa/zstd.go b/internal/rosa/zstd.go index 05164cf7..ccbd713b 100644 --- a/internal/rosa/zstd.go +++ b/internal/rosa/zstd.go @@ -16,6 +16,7 @@ func (t Toolchain) newZstd() pkg.Artifact { Append: []string{"build", "cmake"}, Cache: [][2]string{ {"CMAKE_BUILD_TYPE", "Release"}, + {"CMAKE_INSTALL_LIBDIR", "lib"}, }, }) } |
