From 6821ca1029c36440a74c17c14c29ea57f2dcfa17 Mon Sep 17 00:00:00 2001 From: Joaquim Rocha Date: Mon, 22 Feb 2016 15:02:47 +0100 Subject: [PATCH] build: Link ostree with libarchive libarchive (when available) is being used in ot-builtin-export.c so it is necessary to link ostree with it. https://bugzilla.gnome.org/show_bug.cgi?id=762457 --- Makefile-ostree.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile-ostree.am b/Makefile-ostree.am index ab4485c6..ff7e372b 100644 --- a/Makefile-ostree.am +++ b/Makefile-ostree.am @@ -108,3 +108,8 @@ ostree_SOURCES += \ ostree_CFLAGS += $(OT_INTERNAL_SOUP_CFLAGS) ostree_LDADD += $(OT_INTERNAL_SOUP_LIBS) endif + +if USE_LIBARCHIVE +ostree_CFLAGS += $(OT_DEP_LIBARCHIVE_CFLAGS) +ostree_LDADD += $(OT_DEP_LIBARCHIVE_LIBS) +endif