~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/.svn/text-base/fix-empty-struct.sh.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
sed '
3
 
/^{$/ {
4
 
N
5
 
/\n};$/ {
6
 
# found it - now replace
7
 
s/{.*\n.*};/{\
8
 
        void *dummy;\
9
 
};/
10
 
}
11
 
}' $1
12