mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2024-11-10 14:51:58 +00:00
14 lines
267 B
Bash
14 lines
267 B
Bash
|
#!/bin/sh
|
||
|
# Run this to set up the build system: configure, makefiles, etc.
|
||
|
set -e
|
||
|
|
||
|
package="libogg"
|
||
|
|
||
|
srcdir=`dirname $0`
|
||
|
test -n "$srcdir" && cd "$srcdir"
|
||
|
|
||
|
echo "Updating build configuration files for $package, please wait...."
|
||
|
|
||
|
ACLOCAL_FLAGS="-I m4"
|
||
|
autoreconf -if
|