Quote:
Originally Posted by PaulJS
Is there any other way to patch libnickel.so.1.0.0 and libadobe.so manually?
|
The basic procedure is to extract each file that needs to be patched, apply the patch to each file, and then create a new KoboRoot.tgz containing just the patched files with their original pathnames.
So instead of step 4 in the instructions of post #1: if you can somehow extract libnickel.so.1.0.0 and libadobe.so into the patch_kobo_35 directory, then from that directory run:
Code:
mkdir -p ./usr/local/Kobo
./tools/patch32lsb-Darwin -p 3.5.0_source/libadobe.so.patch -i libadobe.so -o ./usr/local/Kobo/libadobe.so
./tools/patch32lsb-Darwin -p 3.5.0_source/libnickel.so.1.0.0.patch -i libnickel.so.1.0.0 -o ./usr/local/Kobo/libnickel.so.1.0.0
tar cvzf KoboRoot.tgz ./usr/local/Kobo/libadobe.so ./usr/local/Kobo/libnickel.so.1.0.0