mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 18:44:54 +00:00
15 lines
201 B
Bash
Executable File
15 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
|
|
reconf () {
|
|
aclocal
|
|
mkdir -p config
|
|
libtoolize --copy --automake
|
|
autoconf
|
|
autoheader
|
|
automake --no-force --add-missing --copy
|
|
}
|
|
|
|
(cd ../../third_party/bnlib && reconf)
|
|
reconf
|
|
|