diff options
author | Colin Guthrie <colin@mageia.org> | 2014-01-22 23:00:32 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2014-01-22 23:20:06 +0000 |
commit | 86df91fdd1bae8c5c055de70060902094dc09ba0 (patch) | |
tree | f63d18a59b6d730899f9f959ee9ff7767d7ea40a /polkit | |
parent | b616556091625243e85aefdbbeb579904e74e832 (diff) | |
download | drakx-kbd-mouse-x11-86df91fdd1bae8c5c055de70060902094dc09ba0.tar drakx-kbd-mouse-x11-86df91fdd1bae8c5c055de70060902094dc09ba0.tar.gz drakx-kbd-mouse-x11-86df91fdd1bae8c5c055de70060902094dc09ba0.tar.bz2 drakx-kbd-mouse-x11-86df91fdd1bae8c5c055de70060902094dc09ba0.tar.xz drakx-kbd-mouse-x11-86df91fdd1bae8c5c055de70060902094dc09ba0.zip |
Do not exec pkexec but run it so it has a parent process to fix double fork issues mga#11184 mga#12364
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 dc7c4ba..158cc61 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 $(BINDIR)/pkexec $(LIBEXECDIR)/$@ "$$''@"\n exit $$''?\nfi\nexec $(LIBEXECDIR)/$@ "$$''@"\n' > $@ %.policy: %.policy.in intltool-merge --utf8 ../po $< $@ -x -u -c ../po/.intltool-merge-cache |