From 560f51257934d1254f933d02088044fc27c03c69 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 30 Dec 2022 08:51:59 +0100 Subject: [PATCH 1/2] Fix make install-capi-lib --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c0f3a6d0d1f..075abd414db 100644 --- a/Makefile +++ b/Makefile @@ -703,7 +703,7 @@ install-capi-headers: # Currently implemented for linux only. TODO install-capi-lib: - pkgver=$$($(CARGO_BINARY) pkgid --manifest-path lib/c-api/Cargo.toml | sed --posix 's/^.*wasmer-c-api:\([0-9.]*\)$\/\1/') && \ + pkgver=$$($(CARGO_BINARY) pkgid --manifest-path lib/c-api/Cargo.toml | sed 's/^.*wasmer-c-api@//') && \ shortver="$${pkgver%.*}" && \ majorver="$${shortver%.*}" && \ install -Dm755 target/release/libwasmer.so "$(DESTDIR)/lib/libwasmer.so.$$pkgver" && \ From 813c913b3319e6674bc1fcb0b8e7f55750af51f5 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 30 Dec 2022 08:54:22 +0100 Subject: [PATCH 2/2] Add CHANGELOG entry for #3448 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e84a53782bc..90b9fdc8dfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## Fixed - [#3439](https://github.com/wasmerio/wasmer/pull/3439) Use GNU/Linux frame registration code for FreeBSD too + - [#3448](https://github.com/wasmerio/wasmer/pull/3448) Fix `make install-capi-lib` install paths ## 3.1.0 - 12/12/2022