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:
Jean-Marc Lasgouttes 2001-10-12 08:15:47 +00:00
parent 739f74c54a
commit ec03124798
4 changed files with 16 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -92,7 +92,7 @@ ControlTexinfo::getContents(texFileSuffix type, bool withFullPath) const
filename = clsFilename;
break;
case sty:
filename = clsFilename;
filename = styFilename;
break;
}