8 lines
140 B
Bash
8 lines
140 B
Bash
|
#!/bin/bash
|
||
|
cc -E - > /dev/null 2> /dev/null << EOF
|
||
|
#include <btrfs/ioctl.h>
|
||
|
EOF
|
||
|
if test $? -ne 0 ; then
|
||
|
echo exclude_graphdriver_btrfs
|
||
|
fi
|