From 7eead368fcb922960700800bff05c47fc065ac60 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Tue, 28 Dec 1999 02:36:40 +0000 Subject: be defensive about setting {host,group,pass}cat (from Andy Dougherty) p4raw-id: //depot/perl@4714 --- Configure | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Configure') diff --git a/Configure b/Configure index 411982b627..f20ba17cdb 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 } -- cgit v1.2.1