mirror of
https://github.com/containers/skopeo.git
synced 2026-07-13 20:52:53 +00:00
Figure out the right build tags to use for btrfs and libdm support, and make sure we tell Travis to install libgpgme11-dev, because we also build against it. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
cc -E - > /dev/null 2> /dev/null << EOF
|
|
#include <btrfs/version.h>
|
|
EOF
|
|
if test $? -ne 0 ; then
|
|
echo btrfs_noversion
|
|
fi
|