>>>or we could force the C locale in makedepend.SH (as a workaround) >> >>I like that. Subcontious parts of my mind tell me that won't work, but there's >>no rationale to prove that :) > > Alain, could you test the following patch ? (my gcc here isn't locale-dependent) > > --- makedepend.SH (revision 706) > +++ makedepend.SH (working copy) > @@ -58,6 +58,11 @@ > ;; > esac > > +# Avoid localized gcc messages > +case "$ccname" in > + gcc) LC_ALL=C ; export LC_ALL ;; > +esac > + > # We need .. when we are in the x2p directory if we are using the > # cppstdin wrapper script. > # Put .. and . first so that we pick up the present cppstdin, not > End. It's ok it's work fine with that, seems to be the good way.