2015-09-20 13:13:47 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Run this to set up the build system: configure, makefiles, etc.
|
2020-03-14 23:33:00 -04:00
|
|
|
set -e
|
2015-09-20 13:13:47 -04:00
|
|
|
|
|
|
|
|
package="vorbis"
|
|
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
2020-03-14 23:33:00 -04:00
|
|
|
test -n "$srcdir" && cd "$srcdir"
|
2015-09-20 13:13:47 -04:00
|
|
|
|
2020-03-14 23:33:00 -04:00
|
|
|
echo "Updating build configuration files for $package, please wait...."
|
2015-09-20 13:13:47 -04:00
|
|
|
|
2020-03-14 23:33:00 -04:00
|
|
|
autoreconf -if
|