installation bug report

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
thepyper
Posts: 1
Joined: Sat Nov 03, 2007 9:07 pm

installation bug report

Post by thepyper »

Hi!

I've just got my PSP and I just started installation of psptoolchain :)
I think I found a bug in psptoolchain/scripts/001-binutils-2.16.1.sh:

at the line that apply the patch, it reads:
cd binutils-2.16.1 && cat ../../patches/binutils-2.16.1-PSP.patch | patch -p1 || { exit 1; }

while it should read:
cd binutils-2.16.1 && cat ../patches/binutils-2.16.1-PSP.patch | patch -p1 || { exit 1; }

as pwd in that moment is <path>/psptoolchain/binutils-2.16.1
and patch file is in ../patched/...

That caused the 'Invalid configuration' message then when ./configure was launched...

Hi!
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

No, $PWD is psptoolchain/build/binutils-2.16.1 at that point. See toolchain.sh. It is correct as written.
Post Reply