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