Re: install on Xubuntu
- Posted by mattlewis (admin) Jun 13, 2009
- 787 views
engayola said...
Matt, I tell my initial error was to change the file ".profile" instead of ". bashrc". But still problems with:
marcelo@rovi:~/euphoria/demo/linux$ exu qsort.exu qsort.exu:6 can't find dll.e in . or in $/home/marcelo/euphoria/include or in $/home/marcelo/euphoria/include include dll.e ^My .bashrc say
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=$/home/marcelo/euphoria export EUINC=$/home/marcelo/euphoria/includecan help me again?
You need to remove the '$' from the definitions of EUDIR and EUINC:
.bashrc said...
export PATH=$PATH:/home/marcelo/euphoria/bin export EUDIR=/home/marcelo/euphoria export EUINC=/home/marcelo/euphoria/include
The '$' tells bash that the characters that follow the '$' is a variable, hence:
export PATH=$PATH:/home/marcelo/euphoria/binIn euphoria, this would be equivalent to:
PATH = append( PATH, "/home/marcelo/euphoria/bin" )
But when you're setting the directories, you don't want that extra '$'. For some reason, I added that in when replying to you before. It was a typo. Sorry about that.
Matt