6835afaa54
Determine if selinux is available before building cri-o with support. Don't add ostree support to crio or any tools other then kpod. cri-o does not use ostree. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
4 lines
95 B
Bash
Executable file
4 lines
95 B
Bash
Executable file
#!/bin/bash
|
|
if ! pkg-config ostree-1 2> /dev/null ; then
|
|
echo containers_image_ostree_stub
|
|
fi
|