Commit 7a9fda8e 7a9fda8e2770599444db563a7dea9648d64065fc by Sergey Poznyakoff

Bugfix. Always use $AWK.

1 parent 942c66b0
...@@ -58,7 +58,7 @@ state == 1 && /\^\^ }/ { state = 0; print; next } ...@@ -58,7 +58,7 @@ state == 1 && /\^\^ }/ { state = 0; print; next }
58 state == 1 { print } 58 state == 1 { print }
59 state == 0 { next }' $temp |\ 59 state == 0 { next }' $temp |\
60 tr -d '\n' | tr '^' '\n' |\ 60 tr -d '\n' | tr '^' '\n' |\
61 awk -f $BASEDIR/guile-doc-snarf.awk > $OUTFILE 61 $AWK -f $BASEDIR/guile-doc-snarf.awk > $OUTFILE
62 } 62 }
63 63
64 case "$DOCFILE" in 64 case "$DOCFILE" in
......