Bo Peng <[EMAIL PROTECTED]> writes: > I removed boost 1.32 installed by my RHEL4 and > built boost 1.33.1. Things went well with './configure, > make, make install' but now I get all libraries with a] > -gcc suffix, and lyx can not link to them. > Anybody know how to fix this?
I don't think that you need all of "normal", "debug" and "multi threaded" builds... The obvious hackish fix is to use a script: for file in *-gcc* do newfile=`echo "$file" | sed 's/-gcc//'` test "$newfile" -ne "$file" && mv "$file" "$newfile" done Angus