diff options
Diffstat (limited to 'jtools/prereq.sh')
-rw-r--r-- | jtools/prereq.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/jtools/prereq.sh b/jtools/prereq.sh new file mode 100644 index 000000000..2604de1ab --- /dev/null +++ b/jtools/prereq.sh @@ -0,0 +1,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 |