[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Trouble with Radeon 9600 and X.org 6.8.2 on AMD64



On Apr 10, 2005 6:12 PM, Flavio Stanchina <flavio at stanchina dot net> wrote:
I pondered this alternative too when this problem became apparent, but I
couldn't find a suitable binary search&replace tool and I couldn't press
sed into service either. Suggestions, anyone?

Hm, difficult. I have seen a tool that does something similar:
chrpath. It can change the rpath field of an ELF executable, but that
probably does not work.

Debian seems to have two generic binary patch tools: rdiff and xdelta.
But they require exactly the same base file, there is no fuzzy
matching.

What about perl? It has a "sed" mode, in which a one-liner may do the
job. I think of somethink like
  perl -pe "s+lib64+lib+"
Ok, I admit that I am a perl fan, but I really like the idea.

Thomas