forked from Mirrors/freeswitch
16d6e9901c
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7502 d0543943-73ff-0310-b7d9-9358b9ac24b2
9 lines
118 B
Bash
Executable File
9 lines
118 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## apply patches to the ./export hierarchy
|
|
|
|
for patch in *.patch
|
|
do
|
|
patch -d export -p1 < $patch
|
|
done
|