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
74 B
Bash
Executable file
4 lines
74 B
Bash
Executable file
#!/bin/bash
|
|
if pkg-config libselinux 2> /dev/null ; then
|
|
echo selinux
|
|
fi
|