pidgin/pidgin

f77cf4694364
Parents aaa0ec5b5e3b
Children 7988932faf91
We should be checking for the pidgin3 executable not pidgin

Testing Done:
Ran `ninja reconfigure` to make sure it worked properly. This doesn't currently check the prefix, but that's probably alright as this is pretty much just an informational message.

Reviewed at https://reviews.imfreedom.org/r/821/
  • +3 -3
    meson.build
  • --- a/meson.build Sun Jul 18 02:20:49 2021 -0500
    +++ b/meson.build Thu Jul 22 16:39:08 2021 -0500
    @@ -517,7 +517,7 @@
    add_project_arguments('-features=extensions', language : 'c')
    endif
    -pidginpath = find_program('pidgin', required : false)
    +pidgin3path = find_program('pidgin3', required : false)
    #######################################################################
    # Check for Unity and Messaging Menu
    @@ -771,8 +771,8 @@
    message('')
    bindir = get_option('prefix') / get_option('bindir')
    message('Pidgin will be installed in @0@.'.format(bindir))
    -if pidginpath.found()
    - message('Warning: You have an old copy of Pidgin at @0@.'.format(pidginpath.path()))
    +if pidgin3path.found()
    + message('Warning: You have an old copy of pidgin3 at @0@.'.format(pidgin3path.path()))
    endif
    if not INSTALL_PIXMAPS
    message('')