mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-05-23 03:38:10 +02:00
This will be needed to get better error messages to users of the D-Bus API. We use glib's builtin gettext support. No strings marked as translatable yet, we'll need to mark those user-visible strings carefully and review them.
7 lines
140 B
Bash
Executable file
7 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
glib-gettextize -f -c || exit 1
|
|
autoconf || exit 1
|
|
automake -a -c || exit 1
|
|
./configure $*
|