
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
24 lines
537 B
Bash
Executable File
24 lines
537 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
REQUIRED_AUTOMAKE_VERSION=1.9
|
|
PKG_NAME=ModemManager
|
|
|
|
(test -f $srcdir/configure.ac \
|
|
&& test -f $srcdir/src/main.c) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
echo " top-level $PKG_NAME directory"
|
|
exit 1
|
|
}
|
|
|
|
(cd $srcdir;
|
|
gtkdocize || exit 1
|
|
autoreconf --force --install --verbose
|
|
)
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|
|
fi
|