summaryrefslogtreecommitdiff
path: root/distcheck.sh
blob: 3360e3124c6ea207b16ca9c1dae7315f4e0fe0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

actual=$(wget -o/dev/null -O/dev/stdout https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/include/uapi/linux/capability.h | grep "#define.CAP_LAST_CAP"|awk '{print $3}')
working=$(grep "#define.CAP_LAST_CAP" libcap/include/uapi/linux/capability.h|awk '{print $3}')

if [[ ${actual} = ${working} ]]; then
    echo "up to date with officially named caps"
    exit 0
fi

echo "want: ${actual}"
echo "have: ${working}"
exit 1