mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
e0c386a77f
The autoreconf tool does the same tool detection the older shell script does, and is now sufficiently widely deployed to depend on. The new script is what is currently used in other Xiph.Org projects. Note this is a change to the new pattern of needing to invoke ./configure separately after running ./autogen.sh. (Fix #2254)
10 lines
226 B
Bash
Executable File
10 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
|
set -e
|
|
|
|
srcdir=`dirname $0`
|
|
test -n "$srcdir" && cd "$srcdir"
|
|
|
|
echo "Updating build configuration files for Icecast, please wait...."
|
|
|
|
autoreconf -isf |