From: Gurusamy Sarathy Date: Tue, 28 Dec 1999 02:36:40 +0000 (+0000) Subject: be defensive about setting {host,group,pass}cat (from Andy Dougherty) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7599c0b3a5551e3249bec4cfca2a97eefbcd917f;p=p5sagit%2Fp5-mst-13.2.git be defensive about setting {host,group,pass}cat (from Andy Dougherty) p4raw-id: //depot/perl@4714 --- diff --git a/Configure b/Configure index 411982b..f20ba17 100755 --- a/Configure +++ b/Configure @@ -6378,13 +6378,13 @@ if $test -d /usr/etc/yp || $test -d /etc/yp; then esac fi case "$hostcat" in -'') hostcat='cat /etc/hosts';; +'') test -f /etc/hosts && hostcat='cat /etc/hosts';; esac case "$groupcat" in -'') groupcat='cat /etc/group';; +'') test -f /etc/group && groupcat='cat /etc/group';; esac case "$passcat" in -'') passcat='cat /etc/passwd';; +'') test -f /etc/passwd && passcat='cat /etc/passwd';; esac : now get the host name @@ -6486,6 +6486,7 @@ case "$myhostname" in $sed -e 's/[ ]*#.*//; s/$/ /' > hosts && \ $test -s hosts } || { + test "X$hostcat" != "X" && $hostcat | $sed -n -e "s/[ ]*#.*//; s/\$/ / /[ ]$myhostname[ . ]/p" > hosts }