mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
11 lines
227 B
Bash
Executable File
11 lines
227 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
|