Harlan Stenn wrote: > > Well, you can create and maintain a 'config.linuxdistro' on your own... > > Yes, and then code: > > ... > cvo=`config.guess` > case $cvo in > *-*-linux-gnu) > cvo=`config.linuxdistro` > ;; > esac > ...
Yes. This is how it's meant. > everywhere one would otherwise simply code: > > cvo=`config.guess` This is too simple. It increases the temptation to use the distro's name, instead of writing an autoconf test. I've already explained that this is undesirable because it limits the freedom to fork a new distribution. Bruno