From 1e3c9bf249344d0fea0f5599027975a2f0f7c8a3 Mon Sep 17 00:00:00 2001 From: DJ Lucas Date: Fri, 1 Dec 2017 04:48:51 +0000 Subject: [PATCH] Fix command explanations for meson build of network-manager applet. Add missing parameter required for gnome-shell. git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19563 af4574ff-66df-0310-9fd7-8a98e5e911e0 --- gnome/applications/network-manager-applet.xml | 34 ++++++++----------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/gnome/applications/network-manager-applet.xml b/gnome/applications/network-manager-applet.xml index 8e26bf3e31..96eaf798cb 100644 --- a/gnome/applications/network-manager-applet.xml +++ b/gnome/applications/network-manager-applet.xml @@ -130,10 +130,11 @@ mkdir build && cd build && -meson --prefix=/usr \ - --sysconfdir=/etc \ - -Denable-selinux=false \ - -Denable-team=false && +meson --prefix=/usr \ + --sysconfdir=/etc \ + -Denable-libnm-gtk=true \ + -Denable-selinux=false \ + -Denable-team=false && ninja @@ -150,34 +151,27 @@ ninja Command Explanations - - - - - --without-team: This switch disables the team + -Denable-team=false: This switch disables the team configuration editor since it requires Jansson which is not currently in BLFS. - --without-selinux: This switch forcibly disables - SELinux support since it is not currently in - BLFS and the build will fail without it. + -Denable-selinux=false: This switch forcibly + disables SELinux support since it is not + currently in BLFS and the build will fail without it. - : This switch disables WWAN support. Use - this if you do not have installed. + : This switch disables WWAN support. + Use this if you do not have installed.