From d23af045f6dd7cf18c7d93ff00c313eff767b9af Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 5 Jul 2018 20:15:56 +0200 Subject: [PATCH] meson: define PPPD_PATH variable configure.ac defines it just like it defines other PATH variables for use with nm_utils_find_helper. Meson for some reason did not. https://bugzilla.gnome.org/show_bug.cgi?id=796752 (cherry picked from commit f3c1e7f6abf3b570e04d7d87a914a33e373fc692) --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index c80945d49c..05e227b790 100644 --- a/meson.build +++ b/meson.build @@ -501,6 +501,8 @@ if enable_ppp pppd = find_program(locations, required: false) assert(pppd.found(), 'pppd required but not found, please provide a valid pppd path or use -Dppp=false to disable it') + config_h.set_quoted('PPPD_PATH', pppd.path()) + pppd_plugin_dir = get_option('pppd_plugin_dir') if pppd_plugin_dir == '' pppd_plugin_dir = join_paths(nm_libdir, 'pppd', '2.4.5')