summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-04-05 23:37:34 +0000
committerTed Lemon <source@isc.org>2001-04-05 23:37:34 +0000
commit8de84e110e6b34034fea5dbec165d6f12939c9c4 (patch)
tree1dcd3002f334e838b1e41d67412b40e04ac4a4ba /configure
parent5aa40fc5a0842f45d98d9ff7c1af0c5f359ac2a6 (diff)
downloadisc-dhcp-8de84e110e6b34034fea5dbec165d6f12939c9c4.tar.gz
Set IFS back to space after parsing PATH.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index 47e4e786..58065c83 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