blob: ddffe0913614366e021e4f8b7a461631b56380ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# goto root dir (this script resides in src)
BASEDIR=`dirname $(readlink -f $0)`
cd ${BASEDIR}/../
diff -ur home/.XCompose src/xcompose/dotXCompose
rm -f gen/.XCompose
cp src/xcompose/dotXCompose gen/.XCompose
patch gen/.XCompose src/xcompose.patch
|