~ubuntu-branches/ubuntu/quantal/flightgear/quantal

« back to all changes in this revision

Viewing changes to irix-hack.sh

  • Committer: Bazaar Package Importer
  • Author(s): Ove Kaaven
  • Date: 2002-03-27 21:50:15 UTC
  • Revision ID: james.westby@ubuntu.com-20020327215015-0rvi3o8iml0a8s93
Tags: upstream-0.7.9
ImportĀ upstreamĀ versionĀ 0.7.9

Show diffs side-by-side

added added

removed removed

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