libgnt/libgnt

Add some missing commas
release-2.x.y
2020-06-17, Gary Kramlich
c9ab4b684cf4
Parents 69d553f60cbc
Children 09f2a0717ce5
Add some missing commas
  • +2 -2
    meson.build
  • --- a/meson.build Sun Jun 14 03:13:54 2020 -0500
    +++ b/meson.build Wed Jun 17 05:06:10 2020 -0500
    @@ -74,7 +74,7 @@
    # The order of this list is important to the condition that follows.
    ncurses_libs = [
    compiler.find_library('ncursesw', required : false),
    - compiler.find_library('panelw', required : false)
    + compiler.find_library('panelw', required : false),
    compiler.find_library('tinfow', required : false),
    ]
    if not ncurses_libs[0].found() or not ncurses_libs[1].found()
    @@ -117,7 +117,7 @@
    # The order of this list is important to the condition that follows.
    ncurses_libs = [
    compiler.find_library('ncurses', required : false),
    - compiler.find_library('panel', required : false)
    + compiler.find_library('panel', required : false),
    compiler.find_library('tinfo', required : false),
    ]
    ncurses_available = ncurses_libs[0].found() and ncurses_libs[1].found()