wok rev 11392

Compat: ensure that sqlite genpkg_rules() doesn't return a false failure
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 05:11:58 2011 +0100 (2011-12-10)
parents 30290f07d3ed
children d1d138d47cc2
files sqlite/receipt
line diff
     1.1 --- a/sqlite/receipt	Sat Dec 10 05:10:43 2011 +0100
     1.2 +++ b/sqlite/receipt	Sat Dec 10 05:11:58 2011 +0100
     1.3 @@ -48,5 +48,7 @@
     1.4  	mkdir -p $fs/usr
     1.5  	
     1.6  	cp -a $install/usr/bin $fs/usr
     1.7 -	[ -f $fs/usr/bin/lemon ] && rm -f $fs/usr/bin/lemon
     1.8 +	if [ -f $fs/usr/bin/lemon ]; then
     1.9 +		rm -f $fs/usr/bin/lemon
    1.10 +	fi
    1.11  }