1
0
mirror of https://github.com/containers/buildah.git synced 2025-04-18 07:04:05 +03:00
buildah/btrfs_tag.sh
Marcel Bargull c219669c3f Use CPP, CC and flags in dep check scripts
Signed-off-by: Marcel Bargull <marcel.bargull@udo.edu>
2020-11-06 20:11:20 +01:00

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