wok rev 22345

tcc, unfs3: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 17 20:40:16 2019 +0100 (2019-11-17)
parents 3818eac942d1
children 937925ea7478
files tcc/receipt tinyssh/receipt unfs3/receipt
line diff
     1.1 --- a/tcc/receipt	Sun Nov 17 16:39:12 2019 +0100
     1.2 +++ b/tcc/receipt	Sun Nov 17 20:40:16 2019 +0100
     1.3 @@ -35,8 +35,8 @@
     1.4  				--prefix=/usr \
     1.5  				--enable-cross ;;
     1.6  	esac &&
     1.7 -	make && make test &&
     1.8 -	make DESTDIR=$DESTDIR install
     1.9 +	make && make -j 1  test &&
    1.10 +	make -j 1 DESTDIR=$DESTDIR install
    1.11  }
    1.12  
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
     2.1 --- a/tinyssh/receipt	Sun Nov 17 16:39:12 2019 +0100
     2.2 +++ b/tinyssh/receipt	Sun Nov 17 20:40:16 2019 +0100
     2.3 @@ -28,7 +28,7 @@
     2.4  
     2.5  	cp -a $install/usr/sbin $fs/usr
     2.6  	for i in $fs/usr/sbin/tinysshd-*; do
     2.7 -		cmp $fs/usr/sbin/tinysshd $i &&
     2.8 +		#cmp $fs/usr/sbin/tinysshd $i &&
     2.9  		ln -f $fs/usr/sbin/tinysshd $i
    2.10  	done 
    2.11  }
     3.1 --- a/unfs3/receipt	Sun Nov 17 16:39:12 2019 +0100
     3.2 +++ b/unfs3/receipt	Sun Nov 17 20:40:16 2019 +0100
     3.3 @@ -18,11 +18,10 @@
     3.4  # Rules to configure and make the package.
     3.5  compile_rules()
     3.6  {
     3.7 -	cd $src
     3.8  	./configure --prefix=/usr --infodir=/usr/share/info \
     3.9  	--sysconfdir=/etc \
    3.10  	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    3.11 -	make
    3.12 +	make -j 1
    3.13  }
    3.14  
    3.15  # Rules to gen a SliTaz package suitable for Tazpkg.