f893e38d6d
Add the necessary build tags and configuration so that integration tests can properly build against device mapper and btrfs libraries. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
7 lines
132 B
Bash
Executable file
7 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
|