wok-stable rev 3195
Udev: fix group path in receipt
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed May 27 11:52:33 2009 +0200 (2009-05-27) |
parents | c50152520c0a |
children | 1da58af0028a |
files | gecko-mediaplayer/receipt udev/receipt |
line diff
1.1 --- a/gecko-mediaplayer/receipt Wed May 27 10:54:26 2009 +0200 1.2 +++ b/gecko-mediaplayer/receipt Wed May 27 11:52:33 2009 +0200 1.3 @@ -17,10 +17,9 @@ 1.4 { 1.5 cd $src 1.6 ./configure --prefix=/usr --sysconfdir=/etc \ 1.7 - --disable-schemas-install --without-gconf && 1.8 + --disable-schemas-install --without-gconf && 1.9 make && 1.10 make DESTDIR=$PWD/_pkg install 1.11 - 1.12 } 1.13 1.14 # Rules to gen a SliTaz package suitable for Tazpkg. 1.15 @@ -28,5 +27,4 @@ 1.16 { 1.17 mkdir -p $fs/usr/lib 1.18 cp -a $_pkg/usr/lib/mozilla $fs/usr/lib 1.19 - 1.20 }
2.1 --- a/udev/receipt Wed May 27 10:54:26 2009 +0200 2.2 +++ b/udev/receipt Wed May 27 11:52:33 2009 +0200 2.3 @@ -68,9 +68,9 @@ 2.4 { 2.5 # Sanity check for udev+ldap boot 2.6 list_udev_group GROUP | while read x ; do 2.7 - grep -q ^$x: $/etc/group || chroot $1/ addgroup $x 2.8 + grep -q ^$x: $1/etc/group || chroot $1/ addgroup $x 2.9 done 2.10 list_udev_group OWNER | while read x ; do 2.11 - grep -q ^$x: $/etc/passwd || chroot $1/ adduser -S -D -H $x 2.12 + grep -q ^$x: $1/etc/passwd || chroot $1/ adduser -S -D -H $x 2.13 done 2.14 }