summaryrefslogtreecommitdiff
path: root/recipes/dvsdk/files/dvsdk-rules/check.sh
blob: 8dc4dd495935f65967d7bc2182292d8e0ebaf10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

echo "Checking that components in Rules.make are found:"
echo

for x in $CHECKLIST
do
    if [ ! -e $x ]
    then
        echo "WARNING: $x doesn't exist, check your Rules.make.."
    fi
done

echo "Done checking! If no warning messages above, all components are found.."

echo