mirror of
https://github.com/containers/skopeo.git
synced 2025-08-10 19:02:28 +00:00
On FreeBSD, bash lives in /usr/local/bin/bash. These scripts don't really depend on bash so could be changed to /bin/sh. Signed-off-by: Doug Rabson <dfr@rabson.org>
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
|