mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
cdcb9b2cc0
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2005 a592a061-630c-0410-9148-cb99ea01b6c8
28 lines
424 B
Plaintext
28 lines
424 B
Plaintext
PATH="/usr/local/lyx/bin:/usr/local/bin:/usr/X11R6/bin:/usr/bin:/bin:$PATH"
|
|
unset DOSDRIVE
|
|
unset DOSDIR
|
|
unset TMPDIR
|
|
unset TMP
|
|
|
|
USER="`id -un`"
|
|
|
|
# Set up USER's home directory; no spaces allowed in the path!
|
|
export HOME=//c/Docs/Lyx
|
|
|
|
export USER PATH
|
|
|
|
for i in /etc/profile.d/*.sh ; do
|
|
if [ -f $i ]; then
|
|
. $i
|
|
fi
|
|
done
|
|
|
|
export DISPLAY=localhost:0
|
|
|
|
export MAKE_MODE=unix
|
|
|
|
|
|
cd "$HOME"
|
|
|
|
test -f ./.bashrc && . ./.bashrc
|