]> git.mxchange.org Git - flightgear.git/blob - irix-hack.sh
Removed unused cur_view_fdm variable as suggested by Bernie Bright.
[flightgear.git] / irix-hack.sh
1 #!/bin/sh
2
3 for n in `find . -name Makefile`; do \
4    echo "Fixing file $n"; \
5    mv -f $n $n.ar-new; \
6    sed 's/$(AR) cru/$(AR) -o/g' $n.ar-new > $n; \
7    rm -f $n.ar-new; \
8 done