summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2020-04-16 23:26:49 +0100
committerRoy Marples <roy@marples.name>2020-04-16 23:26:49 +0100
commitbe4dac84ede995559aed2bb85c23e817d5e67a04 (patch)
treef33a7ae4dc151a1b403e4cb4ab456d372a85cd66 /configure
parente46138e71544901869d16b639be38f10bbf20d79 (diff)
downloaddhcpcd-be4dac84ede995559aed2bb85c23e817d5e67a04.tar.xz
configure: Set a blank default hostname for non Linux
Wups, I was debugging.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 57c5b1a8..203b2ba0 100755
--- a/configure
+++ b/configure
@@ -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