aboutsummaryrefslogtreecommitdiffstats
path: root/polkit
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2013-11-11 19:47:07 +0100
committerColin Guthrie <colin@mageia.org>2013-11-11 20:07:32 +0100
commit04b636946718bebbad8b6a9b42ee5bd356ff3e47 (patch)
tree2cd7e21556c3b24d1b88ef789bf1c22da64427f6 /polkit
parentb8cd18d8f2c422de59d5d6abbee7708201a62fba (diff)
downloadrpmdrake-04b636946718bebbad8b6a9b42ee5bd356ff3e47.tar
rpmdrake-04b636946718bebbad8b6a9b42ee5bd356ff3e47.tar.gz
rpmdrake-04b636946718bebbad8b6a9b42ee5bd356ff3e47.tar.bz2
rpmdrake-04b636946718bebbad8b6a9b42ee5bd356ff3e47.tar.xz
rpmdrake-04b636946718bebbad8b6a9b42ee5bd356ff3e47.zip
Fix the escaping of $* in polkit Makefile.
This was inadvertantly broken in b667b975bcd8b97662b0ca7974f036905cf3177b when the double quotes were changed to single but this usage was not updated.
Diffstat (limited to 'polkit')
-rw-r--r--polkit/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/polkit/Makefile b/polkit/Makefile
index 728330f1..8ca18093 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