diff options
author | Colin Guthrie <colin@mageia.org> | 2013-11-16 12:30:19 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-11-17 11:20:08 +0000 |
commit | 8f525dfb483fe775690f57b4808c4b7531ec6488 (patch) | |
tree | e93d52d29230eaa20c4f0fefd6fe776155c5d3f9 /polkit | |
parent | 08da95f8c002d27c91f9f434718735827316829f (diff) | |
download | drakx-kbd-mouse-x11-8f525dfb483fe775690f57b4808c4b7531ec6488.tar drakx-kbd-mouse-x11-8f525dfb483fe775690f57b4808c4b7531ec6488.tar.gz drakx-kbd-mouse-x11-8f525dfb483fe775690f57b4808c4b7531ec6488.tar.bz2 drakx-kbd-mouse-x11-8f525dfb483fe775690f57b4808c4b7531ec6488.tar.xz drakx-kbd-mouse-x11-8f525dfb483fe775690f57b4808c4b7531ec6488.zip |
polkit: Only use pkexec when not already root
Diffstat (limited to 'polkit')
-rw-r--r-- | polkit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polkit/Makefile b/polkit/Makefile index 34e8106..dc7c4ba 100644 --- a/polkit/Makefile +++ b/polkit/Makefile @@ -13,7 +13,7 @@ clean: rm -f $(WRAPPERS) $(POLICY) %: org.mageia.%.policy.in - @echo -e "#!/bin/sh\nexec $(BINDIR)/pkexec $(LIBEXECDIR)/$@ $$""*" > $@ + @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 |