From 564578989b1afe4b6047eb08c68a7126d25b5470 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 18 Jun 2018 09:53:09 -0700 Subject: hack/ostree_tag.sh: Fill in OSTree dependencies Copying the libraries from: $ git grep pkg-config vendor/github.com/containers/image/ vendor/github.com/containers/image/ostree/ostree_dest.go:// #cgo pkg-config: glib-2.0 gobject-2.0 ostree-1 libselinux vendor/github.com/containers/image/ostree/ostree_src.go:// #cgo pkg-config: glib-2.0 gobject-2.0 ostree-1 We need all of those to compile the vendored Go dependency, not just ostree-1. Signed-off-by: W. Trevor King Closes: #958 Approved by: giuseppe --- hack/ostree_tag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hack') diff --git a/hack/ostree_tag.sh b/hack/ostree_tag.sh index 89499c5e8..f7bccf127 100755 --- a/hack/ostree_tag.sh +++ b/hack/ostree_tag.sh @@ -1,4 +1,4 @@ #!/bin/bash -if ! pkg-config ostree-1 2> /dev/null ; then +if ! pkg-config glib-2.0 gobject-2.0 ostree-1 libselinux 2> /dev/null ; then echo containers_image_ostree_stub fi -- cgit v1.2.3-54-g00ecf