Hi there, my first post to this list. I was browsing config.sub and stumbled on a possible typo.
================ diff --git a/lib/config.sub b/lib/config.sub index 2c6a07ab3..c5d18ce79 100755 --- a/lib/config.sub +++ b/lib/config.sub @@ -980,7 +980,7 @@ case $cpu-$vendor in ;; c90-unknown | c90-cray) vendor=cray - basic_os=${Basic_os:-unicos} + basic_os=${basic_os:-unicos} ;; fx80-unknown) vendor=alliant ================== How to exhibit the issue: ./config.sub c90-cray-linux should print c90-cray-linux-gnu, but prints c90-cray-unicos I don't know if this example makes sense, but there is no other reference to the 'Basic_os' with capital 'B' so I suspect it is accidentally capitalized. -- Shiro Kawai