Ralf Wildenhues wrote:
> > ! for module in `join "$tmp"/modules1 "$tmp"/modules2`; do
>
> I'm pretty sure you want `LC_ALL=C join' instead here.
Yes. Good catch. Thanks.
--- gnulib-tool 11 Dec 2006 12:41:09 -0000 1.200
+++ gnulib-tool 11 Dec 2006 18:19:59 -0000 1.201
@@ -2189,7 +2189,7 @@
# First the #include <...> directives without #ifs, sorted for convenience,
# then the #include "..." directives without #ifs, sorted for convenience,
# then the #include directives that are surrounded by #ifs. Not sorted.
- for module in `join "$tmp"/modules1 "$tmp"/modules2`; do
+ for module in `LC_ALL=C join "$tmp"/modules1 "$tmp"/modules2`; do
include_directive=`func_get_include_directive "$module"`
case "$nl$include_directive" in
*"$nl#if"*)