annotate nobuild/script.sh @ 139:e33f37b14893 default tip

Port to 'no-more-make' https://github.com/GrahamStJack/no-more-make
author David Bryant <bagnose@gmail.com>
date Sun, 30 Sep 2012 15:41:25 +0930
parents 0d427170a805
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
123
0d427170a805 Move to 64-bit
David Bryant <bagnose@gmail.com>
parents:
diff changeset
1 #!/bin/bash
0d427170a805 Move to 64-bit
David Bryant <bagnose@gmail.com>
parents:
diff changeset
2
0d427170a805 Move to 64-bit
David Bryant <bagnose@gmail.com>
parents:
diff changeset
3 for i in $*; do
0d427170a805 Move to 64-bit
David Bryant <bagnose@gmail.com>
parents:
diff changeset
4 cat $i | sed 's/protected void setStruct/protected override void setStruct/g' >| $i.new && mv -f $i.new $i
0d427170a805 Move to 64-bit
David Bryant <bagnose@gmail.com>
parents:
diff changeset
5 done