From: Joaquim Rocha Date: Mon, 22 Feb 2016 14:02:47 +0000 (+0100) Subject: build: Link ostree with libarchive X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~55^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6821ca1029c36440a74c17c14c29ea57f2dcfa17;p=ostree.git 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 --- 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