From 6787cc15f20c6b0b464de402982702ac13de23fc Mon Sep 17 00:00:00 2001 From: "Loren J. Rittle" Date: Fri, 10 Jan 2003 21:12:39 +0000 Subject: [PATCH] * test_summary (configflags): awk portability. From-SVN: r61168 --- contrib/ChangeLog | 4 ++++ contrib/test_summary | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 50d3405a81c..0cca22d2d3d 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2003-01-10 Loren J. Rittle + + * test_summary (configflags): awk portability. + 2003-01-07 Alexandre Oliva * test_summary (configflags): Compute correctly with both diff --git a/contrib/test_summary b/contrib/test_summary index 377f9e5df0d..a56f581aa58 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -94,7 +94,7 @@ BEGIN { print "cat <<'"'"'EOF'"'"' |"; '${prepend_logs+" system(\"cat $prepend_logs\"); "}' } -$0 ~ /^(|# )[^ ]*\/configure / { +$0 ~ /^[^ ]*\/configure / || $0 ~ /^# [^ ]*\/configure / { configflags = $0 " "; gsub(/^# /, "", configflags); srcdir = configflags;