diff options
author | Ted Lemon <source@isc.org> | 2000-06-09 18:26:59 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 2000-06-09 18:26:59 +0000 |
commit | f0cf3e15d392fe1f2d672a63626371fc80a8d4fd (patch) | |
tree | 8d7f20b6aa9640d996c523df762d5d112dbdca7c /configure | |
parent | e651f9b234bd18b410b47476cd987ba90b035845 (diff) | |
download | isc-dhcp-f0cf3e15d392fe1f2d672a63626371fc80a8d4fd.tar.gz |
Make a special case for NetBSD/arm32.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -59,7 +59,11 @@ if [ "$sysname" = "" ]; then fi;; esac;; NetBSD) - sysname=netbsd;; + hw=`uname -m` + case $hw in + arm32) sysname=netbsd-arm32;; + *) sysname=netbsd;; + esac;; OpenBSD) sysname=openbsd;; FreeBSD) |