diff options
author | Thomas Backlund <tmb@mageia.org> | 2013-11-11 01:14:38 +0159 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2013-11-11 01:14:38 +0159 |
commit | d942159a9b4c9c309f6aef91e4d47c334e7fc46e (patch) | |
tree | 4de7a6f16b661d7f15c07ee74b42e96c224b74cf /polkit/Makefile | |
parent | d26fa87f39e688c3ad488bc08fa4afb949b0938b (diff) | |
download | rpmdrake-d942159a9b4c9c309f6aef91e4d47c334e7fc46e.tar rpmdrake-d942159a9b4c9c309f6aef91e4d47c334e7fc46e.tar.gz rpmdrake-d942159a9b4c9c309f6aef91e4d47c334e7fc46e.tar.bz2 rpmdrake-d942159a9b4c9c309f6aef91e4d47c334e7fc46e.tar.xz rpmdrake-d942159a9b4c9c309f6aef91e4d47c334e7fc46e.zip |
properly escape 5096UID
Diffstat (limited to 'polkit/Makefile')
-rw-r--r-- | polkit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |