Robert Boehne <[EMAIL PROTECTED]> writes:
> I've been having some problems with depencency tracking under
> IRIX with the native compiler, it didn't help to use GNU sed,
> so I tracked the problem down to this line from depcomp:
> 
>  sed 's/^[^\.]*\.o://' | tr '

Try changing that to

  sed 's/^.*\.o://' | tr '

This should be safe.  I don't see why the original tried to avoid
'.'s.  The regexp is limited to the first ':' -- so the '.*' cannot
swallow any more of the line.

- Hari
-- 
Raja R Harinath ------------------------------ [EMAIL PROTECTED]
"When all else fails, read the instructions."      -- Cahn's Axiom
"Our policy is, when in doubt, do the right thing."   -- Roy L Ash

Reply via email to