diff options
-rw-r--r-- | polkit/Makefile | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/polkit/Makefile b/polkit/Makefile index 5f418eb..334fc57 100644 --- a/polkit/Makefile +++ b/polkit/Makefile @@ -14,7 +14,6 @@ # Author Makefile file= Yuri Chornoivan <yurchor@ukr.net> BINDIR = /usr/bin -LIBEXECDIR = /usr/libexec BINDEST = $(DESTDIR)$(BINDIR) POLKITPOLICYDEST = $(DESTDIR)/usr/share/polkit-1/actions @@ -22,33 +21,14 @@ POLICY_IN := $(wildcard *.policy.in) POLICY = $(POLICY_IN:.policy.in=.policy) WRAPPERS = $(patsubst org.mageia.%.policy,%,$(POLICY)) -all: $(WRAPPERS) $(POLICY) +all: $(POLICY) clean: - rm -f $(WRAPPERS) $(POLICY) - -%: org.mageia.%.policy.in - @echo -e \ - '#!/bin/sh\n'\ - '#\n'\ - '\n'\ - '# Copyright (C) 2013 THE isodumper`S COPYRIGHT HOLDER\n'\ - '# This file is distributed under the same license as the isodumper package.\n'\ - '\n'\ - '# Author isodumper software= papoteur <papoteur@mageialinux-online.org>\n'\ - '# Author binary polkit file= Geiger David <david.david@mageialinux-online.org>\n'\ - '\n'\ - 'if [[ "$$UID" != "0" ]] ; then\n'\ - ' pkexec $(LIBEXECDIR)/$@ "$$USER $$''@"\n'\ - 'else\n'\ - ' exec $(LIBEXECDIR)/$@ "$$USER $$''@"\n'\ - 'fi\n'\ - > $@ + rm -f $(POLICY) %.policy: %.policy.in intltool-merge --utf8 ../po $< $@ -x -u -c ../po/.intltool-merge-cache install: all install -d $(BINDEST) $(POLKITPOLICYDEST) - install -m755 $(WRAPPERS) $(BINDEST) install -m644 $(POLICY) $(POLKITPOLICYDEST) |