~lattis/muon

1a5ffeea4908fc91829dc870f51b5761e08dd4b1 — Arsen Arsenović 14 days ago 5ff49d9 master
build: fix summary call for bestline in src/external

Fixes the following error when configuring with -Dreadline=bestline:

  src/external/meson.build:74:4: ERROR: Summary section '' already have key 'libpkgconf'
1 files changed, 1 insertions(+), 1 deletions(-)

M src/external/meson.build
M src/external/meson.build => src/external/meson.build +1 -1
@@ 71,7 71,7 @@ readline_opt = get_option('readline')
dep_sources += files(f'readline_@readline_opt@.c')
if readline_opt != 'builtin'
    dep = dependency(readline_opt)
    summary(name, dep.found())
    summary(readline_opt, dep.found())
    dep_dict += {name: dep.found()}
    external_deps += [dep]
endif