wok diff gzip-full/receipt @ rev 18924

glibc: fix build (thanks az_ua)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Feb 25 14:47:17 2016 +0200 (2016-02-25)
parents e30b21af1714
children 35a23f513b71
line diff
     1.1 --- a/gzip-full/receipt	Wed Oct 22 21:07:11 2014 +0300
     1.2 +++ b/gzip-full/receipt	Thu Feb 25 14:47:17 2016 +0200
     1.3 @@ -25,14 +25,14 @@
     1.4  pre_install()
     1.5  {
     1.6  	echo -n "Removing Busybox uncompress and zcat utilities... "
     1.7 -	rm -f $1/bin/uncompress $1/bin/zcat
     1.8 +	rm -f "$1/bin/uncompress" "$1/bin/zcat"
     1.9  	status
    1.10  }
    1.11  
    1.12  post_remove()
    1.13  {
    1.14  	echo -n "Restoring Busybox uncompress and zcat utilities... "
    1.15 -	ln -s busybox $1/bin/uncompress
    1.16 -	ln -s busybox $1/bin/zcat
    1.17 +	ln -s busybox "$1/bin/uncompress"
    1.18 +	ln -s busybox "$1/bin/zcat"
    1.19  	status
    1.20  }