This is an automated email from the ASF dual-hosted git repository. Jens-G pushed a commit to branch release/0.24.0 in repository https://gitbox.apache.org/repos/asf/thrift.git
commit 270b81edfb343546a6ed1dbc03d9d82633c91af2 Author: Jens Geyer <[email protected]> AuthorDate: Sun Jul 5 11:10:25 2026 +0200 Fix stale EXTRA_DIST references that broke make dist Two files listed in the distribution no longer existed at their referenced paths, so "make dist" aborted with "No rule to make target ...": - Thrift.podspec was removed together with the Swift binding but was left behind in the top-level EXTRA_DIST. - The netstd THttpServerTransport.cs was moved into Thrift.AspNetCore/Transport/Server/; point EXTRA_DIST at the Transport directory instead, matching the existing Thrift/Transport entry. Client: netstd Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]> --- Makefile.am | 3 +-- lib/netstd/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0bf25833e..1bdb21473 100644 --- a/Makefile.am +++ b/Makefile.am @@ -178,5 +178,4 @@ EXTRA_DIST = \ phpcs.xml.dist \ README.md \ rust-toolchain \ - sonar-project.properties \ - Thrift.podspec + sonar-project.properties diff --git a/lib/netstd/Makefile.am b/lib/netstd/Makefile.am index 8fe42af2f..798881ad3 100644 --- a/lib/netstd/Makefile.am +++ b/lib/netstd/Makefile.am @@ -100,7 +100,7 @@ EXTRA_DIST = \ Thrift/Transport \ Thrift/*.snk \ Thrift.AspNetCore/.editorconfig \ - Thrift.AspNetCore/THttpServerTransport.cs \ + Thrift.AspNetCore/Transport \ Thrift.AspNetCore/Thrift.AspNetCore.csproj \ Thrift.slnx \ build.cmd \
