]> granicus.if.org Git - graphviz/commitdiff
Add ci/extract-configure-log.sh
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 7 Jun 2020 14:01:24 +0000 (16:01 +0200)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 13 Jun 2020 06:16:54 +0000 (08:16 +0200)
ci/extract-configure-log.sh [new file with mode: 0755]

diff --git a/ci/extract-configure-log.sh b/ci/extract-configure-log.sh
new file mode 100755 (executable)
index 0000000..f5ea2a8
--- /dev/null
@@ -0,0 +1,13 @@
+#!/usr/bin/awk -f
+
+/will be compiled with the following:/,/^  criterion:     No/ {
+    enable = 1;
+}
+{
+    if (enable) {
+        print $0;
+    }
+}
+/^  criterion:     No/ {
+    enable = 0;
+}