mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
CMake build.bat: don't create a directory that already exists
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35279 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
53cb5fb06c
commit
c4815d37aa
@ -55,10 +55,13 @@ echo LyX deps : "%GNUWIN32_DIR%"
|
||||
set PATH=%GNUWIN32_DIR%\bin;%PATH%
|
||||
|
||||
|
||||
mkdir "%LYX_BUILD%"
|
||||
if not exist %LYX_BUILD% (
|
||||
echo Exiting script.
|
||||
goto :eof
|
||||
echo creating "%LYX_BUILD%"
|
||||
mkdir "%LYX_BUILD%"
|
||||
if not exist %LYX_BUILD% (
|
||||
echo Exiting script.
|
||||
goto :eof
|
||||
)
|
||||
)
|
||||
cd "%LYX_BUILD%"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user