Irix fixes.
This commit is contained in:
parent
6dd1ade445
commit
6e229927f5
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then
|
|||
echo "Fixing Makefiles for Irix"
|
||||
for n in `find . -name Makefile.in`; do \
|
||||
mv -f $n $n.ar-new; \
|
||||
sed 's/$(AR) cru /$(AR) -o /g' $n.ar-new > $n; \
|
||||
sed 's/$(AR) cru/$(AR) -o/g' $n.ar-new > $n; \
|
||||
rm -f $n.ar-new; \
|
||||
done;
|
||||
fi
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
for n in `find . -name Makefile`; do \
|
||||
echo "Fixing file $n"; \
|
||||
mv -f $n $n.ar-new; \
|
||||
sed 's/$(AR) cru /$(AR) -o /g' $n.ar-new > $n; \
|
||||
sed 's/$(AR) cru/$(AR) -o/g' $n.ar-new > $n; \
|
||||
rm -f $n.ar-new; \
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue