diff options
author | John Baldwin <jhb@FreeBSD.org> | 2017-07-15 08:30:40 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2017-07-25 09:40:44 -0700 |
commit | b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1 (patch) | |
tree | a4a019c74d259ffbfd3b84f98f3fc5573de49ff9 /gdb/configure.nat | |
parent | a04b53379a18c66376b4130dc3b4936e6433a0e5 (diff) | |
download | gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.zip gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.gz gdb-b9c0e1b40ee4e7eeb3e2850720bf30f28e2e17b1.tar.bz2 |
Fix two NetBSD-specific typos in the configure.nat conversion.
- Add the '-lkvm' library requirement for NetBSD/sparc64.
- Fix spelling of 'nbsdelf' host.
gdb/Changelog:
* configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
Diffstat (limited to 'gdb/configure.nat')
-rw-r--r-- | gdb/configure.nat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/configure.nat b/gdb/configure.nat index 2026ee7..b32c9aa 100644 --- a/gdb/configure.nat +++ b/gdb/configure.nat @@ -345,11 +345,12 @@ case ${gdb_host} in # Host: NetBSD/sparc64 NATDEPFILES="${NATDEPFILES} sparc64-nbsd-nat.o sparc-nat.o \ bsd-kvm.o" + LOADLIBES='-lkvm' ;; esac ;; - nbdself) + nbsdelf) case ${gdb_host_cpu} in arm) # Host: NetBSD/arm |