[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: your mail



On Thu, Aug 15, 2002 at 01:02:50PM +0000, Maya wrote:
> How do I add PKG_CONFIG_PATH permanently to the PATH? What is the line 
> I have to add on the PATH string?

Using a subject line that reflects the main content of your message
will help you to get reaction sooner. 

Now about your questions:

In your ~/.bash_profile you should see something like this:

--------------------------------
# set PATH so it includes user's private bin if it exists

if [ -d ~/bin ] ; then
    PATH="~/bin:${PATH}"
fi
--------------------------

This does the following:  If the user has a "~/bin" directory, add it
to the path.  

To add PKG_CONFIG_PATH you can do the same e.g.

export PKG_CONFIG_PATH=/home/whateverdirectory
PATH="$PKG_CONFIG_PATH:$PATH" 
or
PATH="${PKG_CONFIG_PATH}:${PATH}" 

Regards.
Johann
-- 
Johann Spies          Telefoon: 021-808 4036
Informasietegnologie, Universiteit van Stellenbosch

     "And whatsoever ye shall ask in my name, that will I 
      do, that the Father may be glorified in the Son."     
                                          John 14:13 



Reply to: