repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add more spacing
[personal-kdebase.git]
/
workspace
/
solid
/
networkmanager-0.7
/
dbus
/
do-hand-edits
blob
a18168b9978a15e4d3bed6c00c3b812b70d11315
1
#!/bin/bash
2
3
if
[
-e
hand-edits.
diff
]
4
then
5
rm
hand-edits.
diff
6
fi
7
8
BUILD_DIR
=/
space
/
kde
/
builds
/
trunk
/
KDE
/
kdebase
/
workspace
/
solid
/
networkmanager-0.7
/
dbus
9
for
i
in
*
.h
*
.cpp
10
11
do
12
other
=
"
$BUILD_DIR
/
$i
"
13
if
[
-e
$other
]
14
then
15
diff
-u
$other $i
>>
hand-edits.
diff
16
fi
17
done
18
19