mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-02 08:10:39 +00:00
fixes to tex-info stuff
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2865 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
739f74c54a
commit
ec03124798
@ -1,3 +1,8 @@
|
||||
2001-10-12 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* scripts/TeXFiles.sh: use -follow predicate in "find" to follow
|
||||
symbolic links
|
||||
|
||||
2001-10-11 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* CREDITS: add two unsung heroes
|
||||
|
@ -95,18 +95,18 @@ for TEXMFLSR in "$@"; do # go through the dirs
|
||||
echo "Dir: <$TEXMFLSR>"
|
||||
case "$1" in # list all files with suffix bst
|
||||
"cls")
|
||||
find $TEXMFLSR -name *.cls >> $CLS_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.cls >> $CLS_STYLEFILE
|
||||
;;
|
||||
"sty")
|
||||
find $TEXMFLSR -name *.sty >> $STY_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.sty >> $STY_STYLEFILE
|
||||
;;
|
||||
"bst")
|
||||
find $TEXMFLSR -name *.bst >> $BST_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.bst >> $BST_STYLEFILE
|
||||
;;
|
||||
*)
|
||||
find $TEXMFLSR -name *.cls >> $CLS_STYLEFILE
|
||||
find $TEXMFLSR -name *.sty >> $STY_STYLEFILE
|
||||
find $TEXMFLSR -name *.bst >> $BST_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.cls >> $CLS_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.sty >> $STY_STYLEFILE
|
||||
find $TEXMFLSR -follow -name *.bst >> $BST_STYLEFILE
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2001-10-12 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* ControlTexinfo.C (getContents): use the right file for .sty files
|
||||
|
||||
2001-10-10 Herbert Voss <voss@perce.de>
|
||||
|
||||
* ControlTexinfo.C: new path for the shellscript TeXFiles.sh
|
||||
|
@ -92,7 +92,7 @@ ControlTexinfo::getContents(texFileSuffix type, bool withFullPath) const
|
||||
filename = clsFilename;
|
||||
break;
|
||||
case sty:
|
||||
filename = clsFilename;
|
||||
filename = styFilename;
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user