mirror of
https://github.com/containers/buildah.git
synced 2025-04-18 07:04:05 +03:00
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
${CPP:-${CC:-cc} -E} ${CPPFLAGS} - > /dev/null 2> /dev/null << EOF
|
|
#include <btrfs/version.h>
|
|
EOF
|
|
if test $? -ne 0 ; then
|
|
echo btrfs_noversion
|
|
fi
|