wok diff ntfs-3g/receipt @ rev 18829

cloop: deduplicate support (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 17 14:23:08 2016 +0100 (2016-01-17)
parents c9e270dd464f
children 05abe0736674
line diff
     1.1 --- a/ntfs-3g/receipt	Thu Apr 23 16:47:39 2015 +0300
     1.2 +++ b/ntfs-3g/receipt	Sun Jan 17 14:23:08 2016 +0100
     1.3 @@ -45,11 +45,11 @@
     1.4  # Pre remove and post install commands for Tazpkg.
     1.5  pre_remove()
     1.6  {
     1.7 -	sed -i '/^$PACKAGE$/d' $1/etc/filesystems
     1.8 +	sed -i '/^$PACKAGE$/d' "$1/etc/filesystems"
     1.9  }
    1.10  
    1.11  post_install()
    1.12  {
    1.13 -	grep -qs ^$PACKAGE$ $1/etc/filesystems || \
    1.14 -		echo "$PACKAGE" >> $1/etc/filesystems
    1.15 +	grep -qs ^$PACKAGE$ "$1/etc/filesystems" || \
    1.16 +		echo "$PACKAGE" >> "$1/etc/filesystems"
    1.17  }