dnstop: needs ncurses and it forgot to add -ltinfo (#26163)
dnstop misses a depends('ncurses') and it needs to link with libtinfo from ncurses as well.
This commit is contained in:
parent
9a64a229a0
commit
2154786b61
@ -15,6 +15,10 @@ class Dnstop(AutotoolsPackage):
|
||||
version('master', branch='master')
|
||||
|
||||
depends_on('libpcap')
|
||||
depends_on('ncurses')
|
||||
|
||||
def configure_args(self):
|
||||
return ['LIBS=-ltinfo']
|
||||
|
||||
def install(self, spec, prefix):
|
||||
mkdirp(prefix.bin)
|
||||
|
Loading…
Reference in New Issue
Block a user