Update overlay.

This commit is contained in:
2017-04-08 21:17:43 +02:00
parent 9088cf66cb
commit 7e2df345b7
14 changed files with 1204 additions and 10 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
build_dir=$1
external_dir=$2
echo "build dir : $build_dir"
echo "external dir : $external_dir"
for file in ${external_dir}*
do
base_file=`basename $file`
full_file=`compgen -f ${build_dir}/${base_file}-*`
#echo "Processing $base_file"
#echo " >> $full_file"
if [ -n "$full_file" ]; then
# Do something when var is non-zero length
rm ${full_file}/.stamp_built
fi
done