From ff837b2686cf8f88bbdb95b2ddd8efd7fc9f809e Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Tue, 11 Sep 2018 15:05:03 +0200 Subject: [PATCH] build: print both pppd path and plugins path in configure summary Reported-by: Michael Biebl https://gitlab.freedesktop.org/NetworkManager/NetworkManager/issues/25 --- configure.ac | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index c2523504ef..d695a1c99b 100644 --- a/configure.ac +++ b/configure.ac @@ -1299,7 +1299,7 @@ echo echo "Features:" echo " wext: $ac_with_wext" echo " wifi: $enable_wifi" -echo " ppp: $enable_ppp ${PPPD_PLUGIN_DIR}" +echo " ppp: $enable_ppp ${PPPD_PATH} plugins:${PPPD_PLUGIN_DIR}" echo " modemmanager-1: $with_modem_manager_1" echo " ofono: $with_ofono" echo " concheck: $enable_concheck" diff --git a/meson.build b/meson.build index 1584626d26..40c337dfb7 100644 --- a/meson.build +++ b/meson.build @@ -938,7 +938,7 @@ output += ' wifi: ' + enable_wifi.to_string() + '\n' output += ' iwd: ' + enable_iwd.to_string() + '\n' output += ' pppd: ' + enable_ppp.to_string() if enable_ppp - output += ' ' + pppd_path + output += ' ' + pppd_path + ' plugins:' + pppd_plugin_dir endif output += '\n' output += ' modemmanager-1: ' + enable_modem_manager.to_string() + '\n'