mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Revert "Check for old "LyX 2.3" user directory when configuring."
This reverts commit 1fe6352d4f
.
This commit is contained in:
parent
0e61e6f014
commit
cfb2a89ef3
@ -186,22 +186,6 @@ def checkUpgrade():
|
|||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def checkUpgradeWin():
|
|
||||||
''' Check for upgrade from previous version '''
|
|
||||||
cwd = os.getcwd()
|
|
||||||
basename = os.path.basename(cwd)
|
|
||||||
if basename != "LyX":
|
|
||||||
return
|
|
||||||
lyxrc = os.path.join(cwd, outfile)
|
|
||||||
if os.path.isfile(lyxrc):
|
|
||||||
return
|
|
||||||
olddir = os.path.join(os.path.dirname(cwd), "LyX2.3")
|
|
||||||
if not os.path.isdir(oldir):
|
|
||||||
return
|
|
||||||
logger.info('Copying ' + olddir + ' into ' + cwd)
|
|
||||||
copy_tree(olddir, cwd, True)
|
|
||||||
|
|
||||||
|
|
||||||
def createDirectories():
|
def createDirectories():
|
||||||
''' Create the build directories if necessary '''
|
''' Create the build directories if necessary '''
|
||||||
for dir in ['bind', 'clipart', 'doc', 'examples', 'images', 'kbd',
|
for dir in ['bind', 'clipart', 'doc', 'examples', 'images', 'kbd',
|
||||||
@ -1856,8 +1840,6 @@ Options:
|
|||||||
setEnviron()
|
setEnviron()
|
||||||
if sys.platform == 'darwin' and len(version_suffix) > 0:
|
if sys.platform == 'darwin' and len(version_suffix) > 0:
|
||||||
checkUpgrade()
|
checkUpgrade()
|
||||||
if os.name == 'nt':
|
|
||||||
checkUpgradeWin()
|
|
||||||
createDirectories()
|
createDirectories()
|
||||||
dtl_tools = checkDTLtools()
|
dtl_tools = checkDTLtools()
|
||||||
## Write the first part of outfile
|
## Write the first part of outfile
|
||||||
|
Loading…
Reference in New Issue
Block a user