From e4adeededab5285ba650909d080936d2381511f9 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Sun, 17 Jul 2005 13:11:41 +0000 Subject: [PATCH] There's no reason why anyone else would have MinGW installed at J:\MinGW. Make it easy to customize the location. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10282 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/Win32/packaging/build_lyxwin.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/development/Win32/packaging/build_lyxwin.sh b/development/Win32/packaging/build_lyxwin.sh index ca11c08987..3d81aef0bd 100644 --- a/development/Win32/packaging/build_lyxwin.sh +++ b/development/Win32/packaging/build_lyxwin.sh @@ -38,15 +38,16 @@ HOME="/home/Angus" -# You may need to change these three variables. +# You may need to change these four variables. +MINGW_DIR="/j/MinGW" QT_DIR="${HOME}"/qt3 ASPELL_DIR="${HOME}"/aspell-0.50.5 # A space-separated string of directories # ASPELL_DICT_DIRS="${HOME}/aspell-en-0.50-2 ${HOME}/aspell-de-0.50-2 " ASPELL_DICT_DIRS="${HOME}/aspell-en-0.50-2" -LYX_DIR="../../.." # Everything from here on down should be OK "as is". +LYX_DIR="../../.." PACKAGING_DIR="$LYX_DIR/development/Win32/packaging" DTL_DIR="$PACKAGING_DIR/dtl" CLEAN_DVI_DIR="$PACKAGING_DIR" @@ -58,12 +59,12 @@ LYX_INSTALL_DIR=installprefix # These are all installed in the final LyX package QT_DLL="${QT_DIR}/bin/qt-mt3.dll" -LIBICONV_DLL="/j/MinGW/bin/libiconv-2.dll" -MINGW_DLL="/j/MinGW/bin/mingwm10.dll" +LIBICONV_DLL="${MINGW_DIR}/bin/libiconv-2.dll" +MINGW_DLL="${MINGW_DIR}/bin/mingwm10.dll" -DT2DV="$DTL_DIR/dt2dv.exe" -DV2DT="$DTL_DIR/dv2dt.exe" -CLEAN_DVI_PY="$CLEAN_DVI_DIR/clean_dvi.py" +DT2DV="${DTL_DIR}/dt2dv.exe" +DV2DT="${DTL_DIR}/dv2dt.exe" +CLEAN_DVI_PY="${CLEAN_DVI_DIR}/clean_dvi.py" # Change this to 'mv -f' when you are confident that # the various sed scripts are working correctly.