Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: make install - but not there afterwards  (Read 3524 times)

0 Members and 1 Guest are viewing this topic.

traisen

    Topic Starter


    Starter

    make install - but not there afterwards
    « on: June 30, 2008, 10:41:10 AM »
    This is right place for me... from the questions I have read. (sounds like no question is considered dum :)
    This sort of a programming question, but developers would consider this question too basic.. so its here.

    I downloaded gnu classpath 97.2
    ./configure
    make
    su make install

    and I downloaded cacao 99.1
    ./configure
    make
    su make install

    no errors
    but when I enter

    cacao

    it says its not installed.     (both ubuntu 8.04   (sudo=su and makeclean install = make install)   and fedora)

    I used the default prefix  /usr/local
    /usr/local/bin is in $PATH
    cacao is in /usr/local/cacao/bin and classpath is in /usr/local/classpath

    I think  I have to do something so the prefix path is picked up, but I dont know what.
    Can someone help me tell linux how to see what I installed?
    Thanks

    KenJackson



      Beginner
    • Thanked: 1
      • Yes
      • Jackson I/O
    • Experience: Experienced
    • OS: Linux variant
    Re: make install - but not there afterwards
    « Reply #1 on: July 12, 2008, 07:28:11 PM »
    To verify your suggestion, try this command--just type it:

    PATH="$PATH:/usr/local/cacao/bin"

    And then try to execute cacao again.  If it works, you could put that in ~/.bashrc (or maybe ~/.bash_profile).

    Alternately, if it's just that one executable, you could make symbolic links like this:

    cd /usr/local/bin
    su ln -s ../cacao/bin/cacao