mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 13:58:49 +00:00
8 lines
172 B
Bash
8 lines
172 B
Bash
#!/bin/sh
|
|
# This script should apply all relevant patches to the expat source if
|
|
# deviating from upstream.
|
|
for patchfile in $(ls *.patch)
|
|
do
|
|
patch -p1 < $patchfile
|
|
done
|