| View previous topic :: View next topic |
| Author |
Message |
jesil
Joined: 17 Feb 2009 Posts: 10
|
Posted: Thu Feb 19, 2009 4:21 pm Post subject: Ubuntu Question about zilib |
|
|
| When i was trying to install zlib,i found the first sentence of makefile was like this "PSPSDK=$(shell psp-config --pspsdk-path)".But when i was doing "make install" ,the system suggests that psp-config not found.So i go to terminal ,and input "psp-config".i found it works.I don't know why this happened,and i was Searching for help.Thank you.My system is Ubuntu 8.1. |
|
| Back to top |
|
 |
Wally

Joined: 26 Sep 2005 Posts: 672
|
Posted: Thu Feb 19, 2009 6:14 pm Post subject: Re: Ubuntu Question about zilib |
|
|
| jesil wrote: | | When i was trying to install zlib,i found the first sentence of makefile was like this "PSPSDK=$(shell psp-config --pspsdk-path)".But when i was doing "make install" ,the system suggests that psp-config not found.So i go to terminal ,and input "psp-config".i found it works.I don't know why this happened,and i was Searching for help.Thank you.My system is Ubuntu 8.1. |
You haven't set up the path correctly :)
| Quote: |
## Set up the environment.
gedit ~/.bashrc
## Add these lines to the end of the file.
export PSPDEV="/usr/local/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PATH="$PATH:$PSPDEV/bin:$PSPSDK/bin"
|
|
|
| Back to top |
|
 |
jesil
Joined: 17 Feb 2009 Posts: 10
|
Posted: Thu Feb 19, 2009 6:39 pm Post subject: |
|
|
Thank you for your replying.
| Quote: | | You haven't set up the path correctly :) |
But
I have set up the path before.If i run other makefiles,they works.The other makefiles also included "PSPSDK=$(shell psp-config --pspsdk-path)".This only happened in zlib and libpng's makefile. |
|
| Back to top |
|
 |
Wally

Joined: 26 Sep 2005 Posts: 672
|
Posted: Thu Feb 19, 2009 6:49 pm Post subject: |
|
|
| jesil wrote: | Thank you for your replying.
| Quote: | | You haven't set up the path correctly :) |
But
I have set up the path before.If i run other makefiles,they works.The other makefiles also included "PSPSDK=$(shell psp-config --pspsdk-path)".This only happened in zlib and libpng's makefile. |
these both compile file for me, there's something wrong on your end :) |
|
| Back to top |
|
 |
|