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
commit219bb4da4ff31128155dee30ad10ffb8c0375454 (patch)
treef33a7ae4dc151a1b403e4cb4ab456d372a85cd66 /configure
parentf25c5516030c7b24de5a3861be0e27be78e9375c (diff)
downloaddhcpcd-219bb4da4ff31128155dee30ad10ffb8c0375454.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