From 9495331a221a08b799f13ff39bcee2f3abbcec72 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 29 Jan 2013 13:47:31 -0600 Subject: [PATCH] build: fix PolicyKit modify.system configure message It wasn't actually checking the value, which it should have been doing. Thus the wrong message was printed. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5366f27b1e..6ef77e77f9 100644 --- a/configure.ac +++ b/configure.ac @@ -732,7 +732,7 @@ echo " libnl: $with_libnl" echo " session tracking: $with_session_tracking" echo " suspend/resume: $with_suspend_resume" if test "${enable_polkit}" = "yes"; then - if test "${enable_modify_system}"; then + if test "${enable_modify_system}" = "yes"; then echo " policykit: yes (permissive modify.system)" else echo " policykit: yes (restrictive modify.system)"