From: David Bremner Date: Thu, 19 Feb 2026 23:07:50 +0000 (+0900) Subject: cli/git-remote: add libnotmuch shared library as dependency X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=HEAD;p=notmuch cli/git-remote: add libnotmuch shared library as dependency In [1], Anton mentioned encountering a race condition in the build system, and suggested this fix. [1]: id:177149756401.20239.4570498044656906075@lain.khirnov.net --- diff --git a/Makefile.local b/Makefile.local index 2eb0ead8..828e58ef 100644 --- a/Makefile.local +++ b/Makefile.local @@ -276,7 +276,7 @@ notmuch-shared: $(notmuch_client_modules) lib/$(LINKER_NAME) git-remote-notmuch: git-remote-notmuch.o status.o tag-util.o query-string.o lib/libnotmuch.a util/libnotmuch_util.a parse-time-string/libparse-time-string.a $(call quiet,CXX $(CFLAGS)) $^ $(FINAL_LIBNOTMUCH_LDFLAGS) -o $@ -git-remote-notmuch-shared: git-remote-notmuch.o status.o tag-util.o query-string.o +git-remote-notmuch-shared: git-remote-notmuch.o status.o tag-util.o query-string.o lib/$(LINKER_NAME) $(call quiet,$(FINAL_NOTMUCH_LINKER) $(CFLAGS)) $^ $(FINAL_NOTMUCH_LDFLAGS) -o $@ .PHONY: install