wok-current view slitaz-loram/stuff/loram.final @ rev 25586
Fix linux build with gcc > 6 again
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Mon May 29 12:23:26 2023 +0000 (19 months ago) |
parents | |
children |
line source
1 cd $1/..
2 iso=$(ls *.iso)
3 if [ -s "$iso" ]; then
4 echo "Converting $iso to low ram iso..."
5 yes y | tazlito build-loram $iso $iso.$$
6 mv -f $iso.$$ $iso
7 md5sum $iso > ${iso%.iso}.md5
8 echo "================================================================================"
9 fi
10 cd - > /dev/null