wok rev 156

Typo in sudo
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jan 28 13:14:57 2008 +0100 (2008-01-28)
parents 5d91cb5a0c63
children c26775a21b4c
files sudo/receipt
line diff
     1.1 --- a/sudo/receipt	Mon Jan 28 12:44:47 2008 +0100
     1.2 +++ b/sudo/receipt	Mon Jan 28 13:14:57 2008 +0100
     1.3 @@ -18,7 +18,8 @@
     1.4  	--sysconfdir=/etc \
     1.5  	--without-pam \
     1.6  	--with-editor=/bin/vi \
     1.7 -	--libexecdir=/usr/lib
     1.8 +	--libexecdir=/usr/lib \
     1.9 +	$CONFIGURE_ARGS
    1.10  	
    1.11  	# Build everything
    1.12  	make
    1.13 @@ -33,20 +34,19 @@
    1.14  	mkdir -p $fs/etc
    1.15  	cp -a $_pkg/usr/bin $fs/usr
    1.16  	cp -a $_pkg/usr/sbin $fs/usr
    1.17 -	cp -a $_pkg/usr/libi/*.so $fs/usr/lib
    1.18 +	cp -a $_pkg/usr/lib/*.so $fs/usr/lib
    1.19  	cp -a stuff/sudoers $fs/etc
    1.20  	strip -s $fs/usr/bin/*
    1.21  	strip -s $fs/usr/sbin/*
    1.22  	strip -s $fs/usr/lib/sudo_noexec.so
    1.23 -	
    1.24  }
    1.25  
    1.26  
    1.27  post_install()
    1.28  {
    1.29 -        local root
    1.30 -        root=$1
    1.31 -        echo "Processing post-install commands..."
    1.32 -        chown root.root $root/etc/sudoers
    1.33 -        chmod 0440 $root/etc/sudoers
    1.34 +	local root
    1.35 +	root=$1
    1.36 +	echo "Processing post-install commands..."
    1.37 +	chown root.root $root/etc/sudoers
    1.38 +	chmod 0440 $root/etc/sudoers
    1.39  }