Commit 6787cc15 by Loren J. Rittle Committed by Loren J. Rittle

* test_summary (configflags): awk portability.

From-SVN: r61168
parent b2f29cd9
2003-01-10 Loren J. Rittle <ljrittle@acm.org>
* test_summary (configflags): awk portability.
2003-01-07 Alexandre Oliva <aoliva@redhat.com> 2003-01-07 Alexandre Oliva <aoliva@redhat.com>
* test_summary (configflags): Compute correctly with both * test_summary (configflags): Compute correctly with both
......
...@@ -94,7 +94,7 @@ BEGIN { ...@@ -94,7 +94,7 @@ BEGIN {
print "cat <<'"'"'EOF'"'"' |"; print "cat <<'"'"'EOF'"'"' |";
'${prepend_logs+" system(\"cat $prepend_logs\"); "}' '${prepend_logs+" system(\"cat $prepend_logs\"); "}'
} }
$0 ~ /^(|# )[^ ]*\/configure / { $0 ~ /^[^ ]*\/configure / || $0 ~ /^# [^ ]*\/configure / {
configflags = $0 " "; configflags = $0 " ";
gsub(/^# /, "", configflags); gsub(/^# /, "", configflags);
srcdir = configflags; srcdir = configflags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment