freeswitch/libs/libedit/patches/patches_apply.sh

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