bin/gen-iwyu-dummy-lib.awk |   34 ----------------------------------
 1 file changed, 34 deletions(-)

New commits:
commit b06ba49a0ee6e3f295e8dc50e84e8a45bb3baafa
Author:     Gabor Kelemen <kelem...@ubuntu.com>
AuthorDate: Thu Sep 29 18:04:18 2022 +0200
Commit:     Gabor Kelemen <kelem...@ubuntu.com>
CommitDate: Fri Sep 30 08:15:04 2022 +0200

    Drop unused gen-iwyu-dummy-lib.awk script
    
    missed from 079659eb7d15f15a37f1f508beb5cffe24fe6f25
    when the code using it was dropped
    
    Change-Id: I7d769f8be75335079a4a24391d120505d7bd6c84
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140741
    Tested-by: Jenkins
    Reviewed-by: Gabor Kelemen <kelem...@ubuntu.com>

diff --git a/bin/gen-iwyu-dummy-lib.awk b/bin/gen-iwyu-dummy-lib.awk
deleted file mode 100644
index 464d9515c7ef..000000000000
--- a/bin/gen-iwyu-dummy-lib.awk
+++ /dev/null
@@ -1,34 +0,0 @@
-BEGIN  { domatch = 0; }
-
-{
-    if ($0 ~ /use_external(s)?,/ )
-    {
-        if (index($0, "))"))
-        {
-            gsub(/.*,/, "");
-            gsub(/\)+/, ""); 
-            if (!($0 in exts))
-            {
-                exts[$0];
-                print $0;
-            }
-        }
-        else
-        {
-           domatch = 1;
-        }
-    }
-    else if ($0 ~ /\)\)/ )
-    {
-        domatch = 0;
-    }
-    else if (domatch == 1)
-    {
-        if (!($1 in exts))
-        {
-            exts[$1];
-            print $1;
-        }
-    }
-}
-

Reply via email to