From 6c398aeae7f52ab913b642d396ee039d56a62bb3 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Fri, 4 Jul 2025 20:24:21 +0300 Subject: [PATCH] Fix dependency in Makefile --- pgxn/neon/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgxn/neon/Makefile b/pgxn/neon/Makefile index 9d9c2f34b6..322ab039f5 100644 --- a/pgxn/neon/Makefile +++ b/pgxn/neon/Makefile @@ -63,7 +63,7 @@ WALPROP_OBJS = \ # libcommunicator.a is built by cargo from the Rust sources under communicator/ # subdirectory. `cargo build` also generates communicator_bindings.h. -neon.o: communicator/communicator_bindings.h +communicator_new.o: communicator/communicator_bindings.h $(NEON_CARGO_ARTIFACT_TARGET_DIR)/libcommunicator.a communicator/communicator_bindings.h &: (cd $(srcdir)/communicator && cargo build $(CARGO_BUILD_FLAGS) $(CARGO_PROFILE))