mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00

It's not possible to run any of the scripts on distributions which do have `bash` not in `/bin`. This is being fixed by using `/usr/bin/env bash` instead. Signed-off-by: Sascha Grunert <sgrunert@suse.com>
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cc -E - > /dev/null 2> /dev/null << EOF
|
|
#include <btrfs/version.h>
|
|
EOF
|
|
if test $? -ne 0 ; then
|
|
echo btrfs_noversion
|
|
fi
|