Codebase list kannel / bullseye-backports/main bootstrap.sh
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

bootstrap.sh @bullseye-backports/mainraw · history · blame

#!/bin/sh

#
# verbose
#
set -x

#
# set automake version that needed
#
export WANT_AUTOMAKE=1.8

#
# libtool stuff
#
if `which glibtoolize`
then
	glibtoolize --copy --automake --force
else
	libtoolize --copy --automake --force
fi

#
# and auto-magic stuff
#
aclocal
autoheader
automake --add-missing --copy --gnu
autoconf