forked from Mirrors/freeswitch
4d3dac5b52
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16744 d0543943-73ff-0310-b7d9-9358b9ac24b2
9 lines
227 B
Bash
Executable File
9 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
AUTOMAKE=${AUTOMAKE:-automake-1.9} ACLOCAL=${ACLOCAL:-aclocal-1.9}
|
|
export AUTOMAKE ACLOCAL
|
|
${AUTORECONF:-autoreconf} -i
|
|
find . \( -name 'run*' -o -name '*.sh' \) -a -type f | xargs chmod +x
|
|
chmod +x scripts/*
|