Skip to content
Snippets Groups Projects
Commit 6f0b4856 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

make_cdilib: removed config.h from filelist

parent 36072904
No related branches found
No related tags found
No related merge requests found
......@@ -180,7 +180,11 @@ echo file list:
echo $fileList
for file in $fileList ; do
cat $srcdir/$file | grep -v '^ *# *include *"' >> ${PROG}
if [ "$file" = "config.h" ] ; then
echo "skipped file: $file"
else
cat $srcdir/$file | grep -v '^ *# *include *"' >> ${PROG}
fi
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment