* lib/autotest/general.m4 (AT_INIT): For awk line number
extraction script, ensure `$at_group' has a defined value
even for the empty set, and properly quote its usage inside
the awk script.
+2007-11-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * lib/autotest/general.m4 (AT_INIT): For awk line number
+ extraction script, ensure `$at_group' has a defined value
+ even for the empty set, and properly quote its usage inside
+ the awk script.
+
2007-11-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* doc/autoconf.texi (Shell Functions): New chapter. Document
fi
# Get the last needed group.
-for at_group in $at_groups; do :; done
+for at_group in : $at_groups; do :; done
# Extract the start and end lines of each test group at the tail
# of this file
/^@%:@AT_STOP_/ {
test = substr ($ 0, 10)
print "at_sed" test "=\"1," start "d;" NR "q\""
- if (test == '$at_group') exit
+ if (test == "'"$at_group"'") exit
}' "$at_myself" > "$at_test_source"
. "$at_test_source"