mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
eeb1a304e2
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2840 a592a061-630c-0410-9148-cb99ea01b6c8
30 lines
701 B
Plaintext
30 lines
701 B
Plaintext
# Set up your home directory (in Cygwin syntax)
|
|
export HOME="//x/YourHomeDirectory"
|
|
|
|
# Set up your Language (if you do not want English)
|
|
# export LANG=DE
|
|
|
|
# ========================================================
|
|
# Below this line you should not change anything if you're
|
|
# not familiar with configuration of an unix application!
|
|
# ========================================================
|
|
export PATH="/usr/bin:/usr/local/bin:/usr/X11R6/bin:/bin:$PATH"
|
|
export USER="`id -un`"
|
|
export DISPLAY=127.0.0.1:0.0
|
|
export MAKE_MODE=unix
|
|
|
|
unset DOSDRIVE
|
|
unset DOSDIR
|
|
unset TMPDIR
|
|
unset TMP
|
|
|
|
for i in /etc/profile.d/*.sh ; do
|
|
if [ -f $i ]; then
|
|
. $i
|
|
fi
|
|
done
|
|
|
|
cd "$HOME"
|
|
|
|
test -f ./.bashrc && . ./.bashrc
|