sauron_le_noir
Joined: 05 Jul 2008 Posts: 236
|
Posted: Fri Dec 24, 2010 9:07 pm Post subject: PS3TOOLCHAIN LIBRARY SCRIPT error |
|
|
in the ooPo-ps3libraries-421596a there is a error at 004-freetype-2.4.3.sh
wrong code
| Code: |
## Download the source code.
wget --continue http://voxel.dl.sourceforge.net/project/freetype/freetype2/2.4.3/freetype-2.4.3.tar.gz || { exit 1; }
## Unpack the source code.
rm -Rf freetype-2.4.3 && tar xfvj freetype-2.4.3.tar.bz2 && cd freetype-2.4.3 || { exit 1; }
|
good code
| Code: |
## Download the source code.
wget --continue http://voxel.dl.sourceforge.net/project/freetype/freetype2/2.4.3/freetype-2.4.3.tar.gz || { exit 1; }
## Unpack the source code.
rm -Rf freetype-2.4.3 && tar xzf freetype-2.4.3.tar.gz && cd freetype-2.4.3 || { exit 1; }
|
you download a tar.gz file and try to unzip as a bzip2 file |
|