5 if [ -d $x -a $x != "target/share" ]; then
6 y="`grep '^#Description: ' $x/config.in 2> /dev/null |
7 head -n 1 | cut -d ' ' -f2- | tr ' ' '_'`"
8 [ -n "$y" ] || y=`echo ${x#target/} | tr 'a-z' 'A-Z'`
9 var_append CFGTEMP_TARGETLIST ' ' "${x#target/} $y"
15 for x in target/share/*; do
17 y="`grep '^#Description: ' $x/build.sh |
18 head -n 1 | cut -d ' ' -f2- | tr ' ' '_'`"
19 [ -n "$y" ] || y="${x#target/share/}_-_No_description_found"
20 var_append CFGTEMP_IMAGELIST ' ' "${x#target/share/} $y"