
Instead of mixing both intltool and gettext, which not always work correctly together, this patch obsoletes intltool and uses only gettext, which includes support for translating XML files with ITS rules. See migration steps for GNOME projects here: https://wiki.gnome.org/MigratingFromIntltoolToGettext The gettext ITS rules for polkit policy files are imported from the upstream polkit repository. We don't use the polkit-installed rule files yet because there is no tagged release that contains those files yet, so we cannot build-depend on any specific polkit version. https://bugs.freedesktop.org/show_bug.cgi?id=96940
42 lines
579 B
Makefile
42 lines
579 B
Makefile
|
|
SUBDIRS = \
|
|
. \
|
|
build-aux \
|
|
po \
|
|
data \
|
|
include \
|
|
libqcdm \
|
|
libwmc \
|
|
libmm-glib \
|
|
src \
|
|
plugins \
|
|
cli \
|
|
vapi \
|
|
introspection \
|
|
uml290 \
|
|
test \
|
|
examples \
|
|
docs \
|
|
$(NULL)
|
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
|
--with-udev-base-dir="$$dc_install_base" \
|
|
--with-systemdsystemunitdir="$$dc_install_base/$(SYSTEMD_UNIT_DIR)" \
|
|
--enable-gtk-doc=yes \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
gtester.make \
|
|
COPYING.LIB \
|
|
$(NULL)
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
@CODE_COVERAGE_RULES@
|
|
|
|
if CODE_COVERAGE_ENABLED
|
|
clean-local:
|
|
-find $(top_builddir) -name "*.gcno" -delete
|
|
endif
|