# HG changeset patch # User Rob Landley # Date 1313861185 18000 # Node ID f5ba63db222d212312db19466a923a16007daf1e # Parent 6c85cda8cfcef3f5224b21259200193c79a58e90 Fix the busybox patch I sent upstream to work with hunks at the start of file. diff -r 6c85cda8cfce -r f5ba63db222d sources/patches/busybox-fixpatch.patch --- a/sources/patches/busybox-fixpatch.patch Tue Aug 16 13:48:35 2011 -0500 +++ b/sources/patches/busybox-fixpatch.patch Sat Aug 20 12:26:25 2011 -0500 @@ -30,7 +30,7 @@ if (PATCH_DEBUG) fdprintf(2, "HUNK:%s\n", plist->data); } - matcheof = matcheof < TT.context; -+ matcheof = !TT.context || matcheof < TT.context; ++ matcheof = !matcheof || matcheof < TT.context; if (PATCH_DEBUG) fdprintf(2,"MATCHEOF=%c\n", matcheof ? 'Y' : 'N');