tazwok rev 56

No more status, busybo/cpio also send a \n
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 24 21:20:34 2008 +0200 (2008-04-24)
parents b26fcc7dab20
children ca2d28a335f7
files tazwok
line diff
     1.1 --- a/tazwok	Fri Apr 18 00:18:15 2008 +0200
     1.2 +++ b/tazwok	Thu Apr 24 21:20:34 2008 +0200
     1.3 @@ -466,11 +466,9 @@
     1.4  	# Build cpio archives. Find, cpio and gzip the fs, finish by
     1.5  	# removing the fs tree.
     1.6  	echo -n "Compressing the fs... "
     1.7 -	find fs -print | busybox cpio -o -H newc | gzip > fs.cpio.gz 
     1.8 -	status && rm -rf fs
     1.9 +	find fs -print | cpio -o -H newc | gzip > fs.cpio.gz && rm -rf fs
    1.10  	echo -n "Creating full cpio archive... "
    1.11 -	find . -print | busybox cpio -o -H newc > $PACKAGES_REPOSITORY/$PACKAGE-$VERSION.tazpkg
    1.12 -	status
    1.13 +	find . -print | cpio -o -H newc > $PACKAGES_REPOSITORY/$PACKAGE-$VERSION.tazpkg
    1.14  	# Restore package tree in case we want to browse it.
    1.15  	echo -n "Restoring original package tree... "
    1.16  	zcat fs.cpio.gz | cpio -id