From: Ted Lemon Date: Thu, 5 Apr 2001 23:37:34 +0000 (+0000) Subject: Set IFS back to space after parsing PATH. X-Git-Tag: V3-BETA-2-PATCH-24~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8de84e110e6b34034fea5dbec165d6f12939c9c4;p=thirdparty%2Fdhcp.git Set IFS back to space after parsing PATH. --- diff --git a/configure b/configure index 47e4e786b..58065c83c 100755 --- a/configure +++ b/configure @@ -68,6 +68,7 @@ if [ "$sysname" = "" ]; then gcc_path=$foo/gcc fi done + IFS=" " case $major in 4) @@ -97,11 +98,13 @@ if [ "$sysname" = "" ]; then FreeBSD) sysname=freebsd;; hpux) + IFS=":" for foo in $PATH; do if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then gcc_path=$foo/gcc fi done + IFS=" " if [ x$gcc_path = x ]; then sysname=hpux-cc @@ -111,11 +114,13 @@ if [ "$sysname" = "" ]; then sysname_print=hpux fi;; HP-UX) + IFS=":" for foo in $PATH; do if [ x$gcc_path = x ] && [ -x $foo/gcc ]; then gcc_path=$foo/gcc fi done + IFS=" " if [ x$gcc_path = x ]; then sysname=hpux-cc