# HG changeset patch # User Pascal Bellard # Date 1544646805 -3600 # Node ID 7cf304e72e405f4950a264b3a29412e80c4ade1f # Parent 3ae65034bee92673e613ff64bdb0e0ca5c589a4c xv: race condition diff -r 3ae65034bee9 -r 7cf304e72e40 tidy/receipt --- a/tidy/receipt Wed Dec 12 19:36:13 2018 +0100 +++ b/tidy/receipt Wed Dec 12 21:33:25 2018 +0100 @@ -11,6 +11,7 @@ WGET_URL="http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/$TARBALL" DEPENDS="glibc-base" +BUILD_DEPENDS="file" # Rules to configure and make the package. compile_rules() diff -r 3ae65034bee9 -r 7cf304e72e40 vanessa_logger/receipt --- a/vanessa_logger/receipt Wed Dec 12 19:36:13 2018 +0100 +++ b/vanessa_logger/receipt Wed Dec 12 21:33:25 2018 +0100 @@ -10,6 +10,8 @@ WEB_SITE="http://www.vergenet.net/linux/vanessa" WGET_URL="$WEB_SITE/download/$PACKAGE/$VERSION/$TARBALL" +BUILD_DEPENDS="file" + # Rules to configure and make the package. compile_rules() { diff -r 3ae65034bee9 -r 7cf304e72e40 xv/receipt --- a/xv/receipt Wed Dec 12 19:36:13 2018 +0100 +++ b/xv/receipt Wed Dec 12 21:33:25 2018 +0100 @@ -19,7 +19,6 @@ # Rules to configure and make the package. compile_rules() { - cd $src for i in $PATCH1 $PATCH2 ; do [ -s $SOURCES_REPOSITORY/$(basename $i) ] || wget -P $SOURCES_REPOSITORY $i @@ -37,7 +36,7 @@ sed -i 's|.*extern.*sys_errlist.*|//&|;s|sys_errlist.x.|strerror(x)|' xv.h sed -i -e 's|undef USE_GUNZIP|define USE_GUNZIP\n#define USE_GETCWD|' \ -e 's|/usr/local/bin/gunzip -q|/bin/gunzip|' config.h - make jpeg/libjpeg.a && + make jpeg/libjpeg.a tiff/libtiff.a && make }