mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
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
|