wok diff linux-hfs/receipt @ rev 19617
Up SliTaz projects: cookutils(863), slitaz-base-files(319), slitaz-boot-scripts(436), slitaz-configs(299), slitaz-tools(1008), ssfs(108), tazbug(94), tazinst(86), tazirc(18), tazlito(445), tazpanel(610), tazpkg(932), tazusb(194), tazweb(174).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Jan 10 14:28:40 2017 +0200 (2017-01-10) |
parents | 08cf996a2307 |
children | ffc20f9bd49f |
line diff
1.1 --- a/linux-hfs/receipt Mon Aug 17 11:03:13 2015 +0200 1.2 +++ b/linux-hfs/receipt Tue Jan 10 14:28:40 2017 +0200 1.3 @@ -29,14 +29,13 @@ 1.4 # Post install/remove commands for Tazpkg. 1.5 post_install() 1.6 { 1.7 - grep -qs ^${PACKAGE#*-}$ $1/etc/filesystems || \ 1.8 - echo "${PACKAGE#*-}" >> $1/etc/filesystems 1.9 - chroot "$root/" depmod -a $VERSION-slitaz 1.10 + grep -qs ^${PACKAGE#*-}$ "$1/etc/filesystems" || \ 1.11 + echo "${PACKAGE#*-}" >> "$1/etc/filesystems" 1.12 + chroot "$1/" depmod -a $VERSION-slitaz 1.13 } 1.14 1.15 post_remove() 1.16 { 1.17 - sed -i "/^${PACKAGE#*-}\$/d" $1/etc/filesystems 1.18 - chroot "$root/" depmod -a $VERSION-slitaz 1.19 + sed -i "/^${PACKAGE#*-}\$/d" "$1/etc/filesystems" 1.20 + chroot "$1/" depmod -a $VERSION-slitaz 1.21 } 1.22 -