blob: 2604de1aba2db60ac983871177bea17675d576a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
# test for existing /usr/include/asm
if [ ! -d "/usr/include/asm" ]; then
echo "ERROR: directory \"/usr/include/asm\" not found."
echo "on some systems this is name asm-generic."
echo "try to create a link to the asm directory with"
echo "\"ln -s /usr/include/asm-generic /usr/include/asm\""
exit 1
fi
# test if all files from the files.needed file are available
for LINE in `cat files.needed`; do
FILE=`echo ${LINE} | awk -F ";" '{print $1}'`
LIB=`echo ${LINE} | awk -F ";" '{print $2}'`
#echo -n "looking for development files of \"${LIB}\"..."
FOUND=`find /usr/include /usr/lib -name "${FILE}" | wc -l`
if [ ${FOUND} -lt 1 ]; then
echo "not found!";
echo "Please install the development header files for the library \"${LIB}\"."
exit 1
fi
done
|