mirror of
https://github.com/xiph/opus.git
synced 2025-05-31 23:57:42 +00:00

autoreconf looks for ACLOCAL_*FLAGS in Makefile.am and will pass that on when it invokes aclocal. Furthermore, setting a local like this doesn't make it available to subcommands, so the line has no effect.
10 lines
215 B
Bash
Executable file
10 lines
215 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, please wait...."
|
|
|
|
autoreconf -isf
|