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