From c9c26821de119920373cc884c21a4348668eb02b Mon Sep 17 00:00:00 2001 From: mateor Date: Sat, 13 Oct 2012 16:35:22 -0500 Subject: [PATCH] Fixes for untime Skip RIL files, and a sp fix I missed --- diff_tools/untime.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/diff_tools/untime.awk b/diff_tools/untime.awk index f99827a..f170035 100644 --- a/diff_tools/untime.awk +++ b/diff_tools/untime.awk @@ -1,9 +1,9 @@ # remove time stamp /^--- stock_/ { print $1 " " $2; next; } -/^+++ moded_/ { print $1 " " $2; next; } +/^+++ modded_/ { print $1 " " $2; next; } # convert obsolete form -/^diff -Npru / { sub(/diff -Npru /, "diff -NpruEbB "); } +/^diff -Npru / { sub(/diff -Npru /, "diff -NpruEbB -x '*RIL'"); } /stock-/ { sub(/stock-/, "stock_"); sub(/modded-/, "modded_"); print; next; } # keep rest of file as is: -- 2.11.4.GIT