diff options
author | Colin Guthrie <colin@mageia.org> | 2013-10-12 13:33:41 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-10-12 13:33:41 +0100 |
commit | 5fb0470a800c51333e3e3829dd4a0b626944f3c1 (patch) | |
tree | 54357a4a41ea9749ed490456b09ea96d9ae989f3 | |
parent | e1fc6f4b97e41fec87afbc79e0ab23c1f06785e3 (diff) | |
download | drakx-5fb0470a800c51333e3e3829dd4a0b626944f3c1.tar drakx-5fb0470a800c51333e3e3829dd4a0b626944f3c1.tar.gz drakx-5fb0470a800c51333e3e3829dd4a0b626944f3c1.tar.bz2 drakx-5fb0470a800c51333e3e3829dd4a0b626944f3c1.tar.xz drakx-5fb0470a800c51333e3e3829dd4a0b626944f3c1.zip |
polkit: Use exec in wrapper scripts
-rw-r--r-- | perl-install/standalone/polkit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/polkit/Makefile b/perl-install/standalone/polkit/Makefile index 250afc2b0..a8b5a51da 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\n$(BINDIR)/pkexec $(LIBEXECDIR)/$@ $$""*" > $@ + @echo -e "#!/bin/sh\nexec $(BINDIR)/pkexec $(LIBEXECDIR)/$@ $$""*" > $@ %.policy: %.policy.in intltool-merge --utf8 ../po $< $@ -x -u -c ../po/.intltool-merge-cache |