﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
203	jdk precompiled binaries and /lib64	usk	clfs-commits@…	"There is a note saying: ""The JDK binary installation script for 64-bit systems has the dynamic linker path hard-coded at /lib64/ld-linux-x86-64.so.2 <...> Changing this path manually or with a sed in the *.bin corrupts the *.bin and the install will fail. <...>"".

I'm using a simple perl script to fix this after JDK installation:

{{{
cd $JAVA_HOME && 
perl -i -pe 's,/lib64/ld-linux-x86-64.so.2,/lib/ld-linux-x86-64.so.2\0\0,g;' $(grep -lr ld-linux-x86-64.so.2 .)
}}}

It's working for me. You just need to keep string length unchanged adding \0's.

Can anyone test it?"	enhancement	closed	minor		BOOK	CBLFS	wontfix		
