2001-06-06 23:54:54 +04:00
|
|
|
#!/bin/sh
|
2006-11-17 09:50:19 +03:00
|
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
2012-12-13 00:33:52 +04:00
|
|
|
# We trust that the user has a recent enough autoconf & automake setup
|
|
|
|
# (not older than a few years...)
|
2013-02-08 00:33:03 +04:00
|
|
|
set -e
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -n "$srcdir" && cd "$srcdir"
|
|
|
|
|
|
|
|
echo "Updating build configuration files for FLAC, please wait...."
|
|
|
|
|
2013-01-17 13:13:33 +04:00
|
|
|
touch config.rpath
|
2013-02-08 00:33:03 +04:00
|
|
|
autoreconf -isf
|
|
|
|
#./configure "$@" && echo
|