You've already forked biometric-authentication
mirror of
https://github.com/ukui/biometric-authentication.git
synced 2026-03-09 09:25:45 -07:00
15 lines
229 B
Bash
Executable File
15 lines
229 B
Bash
Executable File
#!/bin/sh
|
|
#aclocal
|
|
#autoconf
|
|
#autoheader
|
|
|
|
echo "Regenerating autotools files"
|
|
autoreconf --force --install || exit 1
|
|
|
|
automake --add-missing
|
|
|
|
libtoolize
|
|
|
|
echo "Setting up Intltool"
|
|
intltoolize --copy --force --automake || exit 1
|