d75cb67d7f
This allows the script to be run from somewhere other than the top-level build directory. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
15 lines
374 B
Bash
Executable File
15 lines
374 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
|
# We trust that the user has a recent enough autoconf & automake setup
|
|
# (not older than a few years...)
|
|
set -e
|
|
|
|
srcdir=`dirname $0`
|
|
test -n "$srcdir" && cd "$srcdir"
|
|
|
|
echo "Updating build configuration files for FLAC, please wait...."
|
|
|
|
touch config.rpath
|
|
autoreconf -isf
|
|
#./configure "$@" && echo
|