wok view slitaz-loram/stuff/loram.iso @ rev 7481

Removed glibc-locale from abiword depends. Added soft link for /usr/share/pixmaps/abiword.png to /usr/share/icons/abiword_48.png. Fixed error when running abiword on command line.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 02 02:25:29 2010 +0000 (2010-12-02)
parents
children
line source
1 if [ -s $1/rootfs.gz2 ]; then
2 local rem
3 rem=$(( $(stat -c "%s" $1/boot/rootfs.gz) % 4 ))
4 [ $rem -ne 0 ] &&
5 dd if=/dev/zero bs=1 count=$(( 4 - $rem )) >> $1/boot/rootfs.gz
6 cat $1/rootfs.gz2 >> $1/boot/rootfs.gz
7 rm -f $1/rootfs.gz2
8 fi