configure: Set a blank default hostname for non Linux

Wups, I was debugging.
This commit is contained in:
Roy Marples 2020-04-16 23:26:49 +01:00
parent f25c551603
commit 219bb4da4f

2
configure vendored
View File

@ -504,7 +504,7 @@ if [ -n "${_DEFAULT_HOSTNAME+x}" ]; then
DEFAULT_HOSTNAME="${_DEFAULT_HOSTNAME}"
else
case "$OS" in
*|linux*) DEFAULT_HOSTNAME="(none)";;
linux*) DEFAULT_HOSTNAME="(none)";;
*) DEFAULT_HOSTNAME="";;
esac
fi