From: William D. <wdo...@us...> - 2005-02-15 19:37:34
|
Update of /cvsroot/flexml/flexml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30096 Modified Files: flexml.pl Log Message: Default skel file is pulled from configurable location Index: flexml.pl =================================================================== RCS file: /cvsroot/flexml/flexml/flexml.pl,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- flexml.pl 13 Feb 2005 18:54:05 -0000 1.40 +++ flexml.pl 15 Feb 2005 19:37:08 -0000 1.41 @@ -516,7 +516,7 @@ $stacksize = ($opt{'b'} ? $opt{'b'} : 100000); # Set skeleton scanner file name and check it is readable (if needed). -$SKELETON = ($opt{'s'} ? $opt{'s'} : '/usr/share/flexml/skel'); +$SKELETON = ($opt{'s'} ? $opt{'s'} : './skel'); die "$0: No skeleton file $SKELETON.\n" if not -r $SKELETON and $opt{S}; # Set document type URI and PUBID. |