summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2018-06-18 09:53:09 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-18 19:16:08 +0000
commit564578989b1afe4b6047eb08c68a7126d25b5470 (patch)
treee6f8ad81179bf960542d780262cf4d4ee831c994 /hack
parentd8f2cb862290895a25383485bebbca1b08f79c95 (diff)
downloadpodman-564578989b1afe4b6047eb08c68a7126d25b5470.tar.gz
podman-564578989b1afe4b6047eb08c68a7126d25b5470.tar.bz2
podman-564578989b1afe4b6047eb08c68a7126d25b5470.zip
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 <wking@tremily.us> Closes: #958 Approved by: giuseppe
Diffstat (limited to 'hack')
-rwxr-xr-xhack/ostree_tag.sh2
1 files changed, 1 insertions, 1 deletions
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