Denis Bitouzé <[email protected]> writes: > Le dimanche 03/06/12 à 09h31, > Laurent Hoeltgen <[email protected]> a écrit : > >> (It's being added to the PATH in my .bashrc file in my home folder. > > I rather used the symlink option: > > http://www.tug.org/texlive/doc/texlive-en/texlive-en.html#x1-280003.2.4 > > and AFAIR I wasn't facing this problem. > >> Any ideas on how I can fix this? > > Maybe a poor workaround: start emacs from the command line?
.bashrc is sourced only for interactive shells, not for login shells. So put a "if [ -f "$HOME/.bashrc" ]; then source $HOME/.bashrc ; fi" in $HOME/.bash_profile to source that for login shells (where you type "startx", and from where the environment is taken). If you're using a login manager, ask the google how to set the environment variables for it. Cheers -- Marco _______________________________________________ auctex mailing list [email protected] https://lists.gnu.org/mailman/listinfo/auctex
