aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--polkit/Makefile2
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 67cde10e..45060b60 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
-- use $UID instead of $(id -u)
+- properly escape $$UID
+- use $$UID instead of $$(id -u)
Version 5.52.1 - 9 November 2013, Thomas Backlund
diff --git a/polkit/Makefile b/polkit/Makefile
index 706cbd0d..728330f1 100644
--- a/polkit/Makefile
+++ b/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