Skip to content

Commit

Permalink
build: link content broker module with libarchive
Browse files Browse the repository at this point in the history
Problem: the content module linkage fails on macos with
complaints about missing libarchive symbols.

Link the module explicitly with libarchive.so.
  • Loading branch information
garlick committed Dec 5, 2024
1 parent 58b3787 commit 95f7f9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ content_la_SOURCES = \
content_la_LIBADD = \
$(top_builddir)/src/common/libfilemap/libfilemap.la \
$(top_builddir)/src/common/libflux-internal.la \
$(top_builddir)/src/common/libflux-core.la
$(top_builddir)/src/common/libflux-core.la \
$(LIBARCHIVE_LIBS)
content_la_LDFLAGS = $(fluxmod_ldflags) -module

content_files_la_SOURCES =
Expand Down

0 comments on commit 95f7f9c

Please sign in to comment.