mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2025-12-23 08:30:08 +01:00
This script uses /bin/sh, which on Debian-like systems is dash, which does not support bash's pushd/popd.
22 lines
380 B
Bash
Executable file
22 lines
380 B
Bash
Executable file
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
olddir=`pwd`
|
|
cd "$srcdir"
|
|
|
|
aclocal || exit 1
|
|
autoheader || exit 1
|
|
glib-gettextize -f -c || exit 1
|
|
gtkdocize --copy || exit 1
|
|
intltoolize -c -f || exit 1
|
|
libtoolize -c || exit 1
|
|
autoconf || exit 1
|
|
automake -a -c || exit 1
|
|
|
|
cd "$olddir"
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
$srcdir/configure --enable-maintainer-mode $*
|
|
fi
|