abinfo "Dropping a left-over .gmo file ..."
rm -v "$SRCDIR"/po/*.gmo

# FIXME: Re-generation via aclocal + automake fails.
#
# cd .. && automake --gnu --include-deps lib/Makefile
# automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
# configure.in:3: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
# configure.in:3: https://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
# configure.in:3: error: your implementation of AM_INIT_AUTOMAKE comes from
# configure.in:3: an old Automake version.  You should run
# configure.in:3: autoreconf -f (or otherwise erase all old files, run
# configure.in:3: aclocal to recreate aclocal.m4, and rerun automake).
# lib/Makefile.am:3: error: automatic de-ANSI-fication support has been removed
#
# ... (and many more)
abinfo "Linking aclocal, autoconf, autoheader, and automake to true to avoid re-generation ..."
ln -sv /usr/bin/true \
    "$SRCDIR"/aclocal
ln -sv /usr/bin/true \
    "$SRCDIR"/autoconf
ln -sv /usr/bin/true \
    "$SRCDIR"/autoheader
ln -sv /usr/bin/true \
    "$SRCDIR"/automake
export PATH="$SRCDIR:$PATH"
