From 18526c95f0933172f4ab9623f8464d956b4668b8 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Tue, 12 Nov 2013 09:31:32 +0100 Subject: polkit: fix wrappers to properly escape arguments when calling the binary --- perl-install/NEWS | 2 ++ perl-install/install/NEWS | 2 ++ perl-install/standalone/polkit/Makefile | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index b120881ff..aa6ce087d 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- polkit: fix wrappers to properly escape arguments when calling the binary + Version 15.72 - 9 November 2013 - dont remove radeon-firmware or any network related firmwares as we dont diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index f8679286c..1cab1b451 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- polkit: fix wrappers to properly escape arguments when calling the binary + Version 15.72.2 - 11 November 2013 - properly escape $$UID diff --git a/perl-install/standalone/polkit/Makefile b/perl-install/standalone/polkit/Makefile index 3a1736983..070f4211e 100644 --- a/perl-install/standalone/polkit/Makefile +++ b/perl-install/standalone/polkit/Makefile @@ -13,7 +13,7 @@ clean: rm -f $(WRAPPERS) $(POLICY) %: org.mageia.%.policy.in - @echo -e '#!/bin/sh\nif [[ "$$UID" != "0" ]] ; then\n exec $(BINDIR)/pkexec $(LIBEXECDIR)/$@ $$""*\nelse\n exec $(LIBEXECDIR)/$@ $$""*\nfi\n' > $@ + @echo -e '#!/bin/sh\nif [[ "$$UID" != "0" ]] ; then\n exec $(BINDIR)/pkexec $(LIBEXECDIR)/$@ "$$''@"\nelse\n exec $(LIBEXECDIR)/$@ "$$''@"\nfi\n' > $@ %.policy: %.policy.in intltool-merge --utf8 ../po $< $@ -x -u -c ../po/.intltool-merge-cache -- cgit v1.2.1