# HG changeset patch # User Pascal Bellard # Date 1569427325 -7200 # Node ID 352e1cee946639bb44f111ca01a5e3c1d3ac13cb # Parent 7a22ba39ec411b45de335b341983773cba6e14b6 sarg: fix build diff -r 7a22ba39ec41 -r 352e1cee9466 busybox/stuff/command_not_found --- a/busybox/stuff/command_not_found Wed Sep 25 11:06:27 2019 +0200 +++ b/busybox/stuff/command_not_found Wed Sep 25 18:02:05 2019 +0200 @@ -6,15 +6,14 @@ gzip -9 >$LIST && chmod 666 $LIST lookup() { - zcat $LIST | grep "/$2$1$" | while read pkg file; do + zcat $LIST | grep "/$2$1$" | if read pkg file; then cat </dev/null diff -r 7a22ba39ec41 -r 352e1cee9466 re2c/receipt --- a/re2c/receipt Wed Sep 25 11:06:27 2019 +0200 +++ b/re2c/receipt Wed Sep 25 18:02:05 2019 +0200 @@ -17,6 +17,7 @@ # Rules to configure and make the package. compile_rules() { + [ -d m4 ] || mkdir m4 ./autogen.sh ./configure \ --prefix=/usr \ diff -r 7a22ba39ec41 -r 352e1cee9466 sarg/receipt --- a/sarg/receipt Wed Sep 25 11:06:27 2019 +0200 +++ b/sarg/receipt Wed Sep 25 18:02:05 2019 +0200 @@ -14,6 +14,7 @@ # Rules to configure and make the package. compile_rules() { + sed -i 's/@mkdir_p@/mkdir -p/' po/Makefile* ./configure \ --sysconfdir=/etc/sarg \ --bindir=/usr/bin \