blob: 40e7189695790679682b593fe294a2f96d253d7c (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
#
# A bootstrapping script that can be used to generate the autoconf,
# automake and libtool-related scripts of the build process. Only
# useful for developers updating Makefile.am, configure.ac etc.
# Regular users building from released tarballs can use the shipped
# configure script, that generates Makefile's from Makefile.in's
autoreconf -W portability -vif $*
|