~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to solid/modemmanager-0.4/dbus/do-hand-edits

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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/modemkmanager-0.4/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