mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 19:14:51 +00:00
Fix bug #8379: LyX Archive fails to include BibTeX files
(cherry picked from commit f6fde4b553
)
This commit is contained in:
parent
c47a7c969f
commit
d781daa401
@ -160,7 +160,7 @@ def gather_files(curfile, incfiles, lyx2lyx):
|
||||
j = 0
|
||||
while j < len(bibfiles):
|
||||
if os.path.isabs(bibfiles[j]):
|
||||
file = bibfiles[j]
|
||||
file = bibfiles[j] + '.bib'
|
||||
else:
|
||||
file = os.path.join(curdir, bibfiles[j] + '.bib')
|
||||
if os.path.exists(file):
|
||||
|
@ -158,6 +158,8 @@ What's new
|
||||
- Removed unnecessary dependency on the package europs.sty from the
|
||||
g-brief layout files.
|
||||
|
||||
- Do not skip bibtex files specified by their full path when creating
|
||||
a LyX archive (bug 8379).
|
||||
|
||||
* USER INTERFACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user