[tor-commits] [tor/master] scripts/cocci: Remove unused arguments from try_parse.sh spatch

teor at torproject.org teor at torproject.org
Fri Oct 25 06:15:24 UTC 2019


commit 87ee49e016a100951bb1dd37f2ef57826a951eb1
Author: teor <teor at torproject.org>
Date:   Thu Oct 24 11:34:28 2019 +1000

    scripts/cocci: Remove unused arguments from try_parse.sh spatch
    
    Part of 31919.
---
 scripts/coccinelle/try_parse.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/scripts/coccinelle/try_parse.sh b/scripts/coccinelle/try_parse.sh
index 6cdd968a0..a90e51b4a 100755
--- a/scripts/coccinelle/try_parse.sh
+++ b/scripts/coccinelle/try_parse.sh
@@ -24,16 +24,18 @@ for fn in "$@"; do
         fi
     fi
 
-    if spatch -macro_file_builtins "$top"/scripts/coccinelle/tor-coccinelle.h \
-              -I "$top" -I "$top"/src -I "$top"/ext --defined COCCI \
+    if spatch --macro-file-builtins \
+              "$top"/scripts/coccinelle/tor-coccinelle.h \
+              --defined COCCI \
               --parse-c "$fn" \
               2>/dev/null | grep "perfect = 1" > /dev/null; then
         : # it's perfect
     else
         echo "$fn"
         if test "${VERBOSE}" != ""; then
-            spatch -macro_file_builtins "$top"/scripts/coccinelle/tor-coccinelle.h \
-                   -I "$top" -I "$top"/src -I "$top"/ext --defined COCCI \
+            spatch --macro-file-builtins \
+                   "$top"/scripts/coccinelle/tor-coccinelle.h \
+                   --defined COCCI \
                    --parse-c "$fn"
         fi
         exitcode=1





More information about the tor-commits mailing list