wok diff linld/receipt @ rev 7817

busybox/init: add subroot= parameter
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 25 15:12:42 2010 +0100 (2010-12-25)
parents 6ad2cadfeba8
children b939fa61b2b0
line diff
     1.1 --- a/linld/receipt	Sat Feb 28 14:37:58 2009 +0000
     1.2 +++ b/linld/receipt	Sat Dec 25 15:12:42 2010 +0100
     1.3 @@ -15,7 +15,10 @@
     1.4  {
     1.5  	mv DIST $src 2> /dev/null
     1.6  	cd $src
     1.7 -	[ -f README.txt ] || wget $WEB_SITE
     1.8 +	if [ ! -f $SOURCES_REPOSITORY/linld.txt ]; then
     1.9 +		wget $WEB_SITE
    1.10 +		mv README.txt $SOURCES_REPOSITORY/linld.txt
    1.11 +	fi
    1.12  }
    1.13  
    1.14  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.15 @@ -24,6 +27,6 @@
    1.16  	mkdir -p $fs/usr/share/boot
    1.17  	cp $src/LINLD$(echo $VERSION | sed 's/[^0-9]//')/LINLD.COM \
    1.18  		$fs/usr/share/boot/linld.com
    1.19 -	cp $src/README.txt $fs/usr/share/boot/linld.txt
    1.20 +	cp $SOURCES_REPOSITORY/linld.txt $fs/usr/share/boot/
    1.21  }
    1.22