From 2f64b65528732325af93d5f60a91d778e3ef82d5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 5 Sep 2000 18:54:34 +0000 Subject: (config_os): Strip out "unknown" from configuration names. --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 9e209acfb0..4b9762e09a 100644 --- a/configure.in +++ b/configure.in @@ -191,6 +191,10 @@ esac # $machine, $vendor, and $os, and changes them whenever convenient. config_machine=$host_cpu config_vendor=$host_vendor config_os=$host_os +# Don't allow vendor == "unknown" +test "$config_vendor" = unknown && config_vendor= +config_os="`echo $config_os | sed 's/^unknown-//'`" + # Some configurations imply other options. case "$host_os" in gnu* | linux* | bsd4.4* | netbsd* | freebsd*) -- cgit 1.4.1