mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
11 lines
210 B
Bash
11 lines
210 B
Bash
|
#!/bin/sh
|
||
|
# Run this to generate the configure script
|
||
|
set -e
|
||
|
|
||
|
srcdir=$(dirname "$0")
|
||
|
test -n "$srcdir" && cd "$srcdir"
|
||
|
|
||
|
echo "Updating build configuration files for permafrost, please wait..."
|
||
|
|
||
|
autoreconf -isf
|