mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 06:00:08 +01:00
Just for consistency, make settings related stuff live under the org.freedesktop.NetworkManager namespace, rather than its own org.freedesktop.NetworkManagerSettings namespace. Renames are done for DBus interface names, DBus object paths, and polkit actions.
28 lines
737 B
Makefile
28 lines
737 B
Makefile
polkit_policydir = $(datadir)/polkit-1/actions
|
|
|
|
dist_polkit_policy_in_files = \
|
|
org.freedesktop.NetworkManager.policy.in
|
|
|
|
dist_polkit_policy_DATA = $(dist_polkit_policy_in_files:.policy.in=.policy)
|
|
|
|
@INTLTOOL_POLICY_RULE@
|
|
|
|
# polkit >= 0.92 doesn't have an updated polkit-policy-file-validate
|
|
#check:
|
|
# @for f in $(dist_polkit_policy_DATA); do \
|
|
# echo -n "Validate PolicyKit policy in $$f : "; \
|
|
# $(POLKIT_POLICY_FILE_VALIDATE) $(srcdir)/$$f ; \
|
|
# ret=$$?; \
|
|
# if [ "$$ret" = "0" ]; \
|
|
# then \
|
|
# echo ok; \
|
|
# else \
|
|
# echo failed; \
|
|
# exit 1; \
|
|
# fi; \
|
|
# done;
|
|
|
|
clean-local :
|
|
rm -f *~
|
|
|
|
EXTRA_DIST = $(dist_polkit_policy_in_files)
|