mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0caa8d383f
Bug 908503: Build config changes for libstagefright demuxer; r=glandium Bug 908503: Remove Chrome demuxer; r=cpearce Bug 908503: Add conversion to Annex B; r=cpearce
14 lines
320 B
Bash
Executable File
14 lines
320 B
Bash
Executable File
#!/bin/bash -e
|
|
cd `dirname "$0"`
|
|
rm -fR patches
|
|
for DIR in `find android/ -name .git`
|
|
do
|
|
DIR=`dirname ${DIR}`
|
|
DST=patches/${DIR:8}
|
|
echo ${DST}
|
|
mkdir -p `dirname ${DST}`
|
|
cp -a ${DIR:8} `dirname ${DIR}`
|
|
(cd ${DIR} && git diff) > ${DST}.patch
|
|
(cd ${DIR} && git rev-parse HEAD) > ${DST}.tag
|
|
done
|