From: Roy Marples Date: Thu, 16 Apr 2020 22:26:49 +0000 (+0100) Subject: configure: Set a blank default hostname for non Linux X-Git-Tag: v9.0.2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=219bb4da4ff31128155dee30ad10ffb8c0375454;p=thirdparty%2Fdhcpcd.git configure: Set a blank default hostname for non Linux Wups, I was debugging. --- 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