#!/bin/csh -f
# Try to circumvent an IRIX ld bug which does not understand -lm.
if ( -x /bin/uname && `/bin/uname` == IRIX  ) then
	ld `echo $* | sed 's/\-lm/\/usr\/lib\/libm.a/g' `
else 
	ld $*
endif
