xbmc: add script to rename patches

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-11-19 07:27:04 +01:00
parent b42f8177fc
commit 8bbf762598

View File

@ -0,0 +1,5 @@
#!/bin/sh
for i in `ls xbmc-*.patch`; do
mv $i `echo $i | sed "s,$1,$2,g"`
done