# HG changeset patch # User Pascal Bellard # Date 1574019616 -3600 # Node ID 951896e3e5b3604b8302d609dae0813e87ee0031 # Parent 3818eac942d1a39e91a4819259f86c94c8c7f4b6 tcc, unfs3: race condition diff -r 3818eac942d1 -r 951896e3e5b3 tcc/receipt --- a/tcc/receipt Sun Nov 17 16:39:12 2019 +0100 +++ b/tcc/receipt Sun Nov 17 20:40:16 2019 +0100 @@ -35,8 +35,8 @@ --prefix=/usr \ --enable-cross ;; esac && - make && make test && - make DESTDIR=$DESTDIR install + make && make -j 1 test && + make -j 1 DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. diff -r 3818eac942d1 -r 951896e3e5b3 tinyssh/receipt --- a/tinyssh/receipt Sun Nov 17 16:39:12 2019 +0100 +++ b/tinyssh/receipt Sun Nov 17 20:40:16 2019 +0100 @@ -28,7 +28,7 @@ cp -a $install/usr/sbin $fs/usr for i in $fs/usr/sbin/tinysshd-*; do - cmp $fs/usr/sbin/tinysshd $i && + #cmp $fs/usr/sbin/tinysshd $i && ln -f $fs/usr/sbin/tinysshd $i done } diff -r 3818eac942d1 -r 951896e3e5b3 unfs3/receipt --- a/unfs3/receipt Sun Nov 17 16:39:12 2019 +0100 +++ b/unfs3/receipt Sun Nov 17 20:40:16 2019 +0100 @@ -18,11 +18,10 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --sysconfdir=/etc \ --mandir=/usr/share/man $CONFIGURE_ARGS && - make + make -j 1 } # Rules to gen a SliTaz package suitable for Tazpkg.