summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1996-09-11 18:41:23 +0000
committerTed Lemon <source@isc.org>1996-09-11 18:41:23 +0000
commitcc97601b7185f12be3a7eadf2f107fdda010585b (patch)
treeef45211e3b49aeabb6b5f06bab17f96db1240848
parentd7774eb0d2f277c6e8eb440c675699f627272bda (diff)
downloadisc-dhcp-cc97601b7185f12be3a7eadf2f107fdda010585b.tar.gz
Fix case statement
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 67a502c5..de30db4f 100755
--- a/configure
+++ b/configure
@@ -21,8 +21,7 @@ if [ "$sysname" = "" ]; then
case `uname -r` in
4*) sysname=sunos4;;
5*)
- path=`which gcc`
- set $path
+ set `which gcc`
if [ $# = 1 ]; then
sysname=sunos5-gcc
else
@@ -34,6 +33,7 @@ if [ "$sysname" = "" ]; then
FreeBSD)
sysname=freebsd;;
hpux)
+ sysname=hpux;;
HP-UX)
sysname=hpux;;
QNX)
@@ -53,7 +53,8 @@ if [ "$sysname" = "" ]; then
echo " alphaosf DEC Alpha OSF/1"
echo " linux Linux"
echo " sunos4 Sunos 4.1.4 (earlier releases may work)"
- echo " sunos5 SunOS 5.5 (Solaris 2.5) (earlier 2.x releases may work)"
+ echo " sunos5-cc Solaris 2.4 or higher with Sun cc"
+ echo " sunos5-gcc Solaris 2.4 or higher with gcc"
echo " netbsd NetBSD 1.1 or higher"
echo " freebsd FreeBSD"
echo " hpux HP-UX"