diff options
author | Karl Berry <karl@freefriends.org> | 2009-02-18 17:29:19 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-02-18 17:29:19 +0000 |
commit | 580735009eac6952e6ce112bd3c6f00fade80c3f (patch) | |
tree | f30360f712a94d2d7fb524989a55fd6a97ccda9e /Master/texmf-dist/scripts/pgfplots | |
parent | 55304cf473fbdece6b5392aac6cfb75671e34189 (diff) |
pgfplots update (17feb09)
git-svn-id: svn://tug.org/texlive/trunk@12180 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/pgfplots')
-rwxr-xr-x | Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh b/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh index 027a6157b77..6549506d486 100755 --- a/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh +++ b/Master/texmf-dist/scripts/pgfplots/pgf2pdf.sh @@ -1,4 +1,8 @@ #!/bin/sh +# +# ATTENTION: this file is more or less deprecated. +# Please take a look at the 'external' library which has been added to pgf. +# At the time of this writing, this library is only available for pgf cvs (newer than 2.00). TEX_FILE="" TEX_LOG_FILE="" @@ -58,7 +62,7 @@ function dumpHelp() { } -LONGOPTS="mainfile:,eps,driver:,texdefs:,warnonly" +LONGOPTS="mainfile:,eps,driver:,texdefs:,warnonly,help" SHORTOPTS="f:t:v" ARGS=`getopt -l "$LONGOPTS" "$SHORTOPTS" "$@"` if [ $? -ne 0 ]; then @@ -78,6 +82,7 @@ while [ $# -gt 0 ]; do --warnonly) shift; WARN_ONLY_IF_TEXFILE_DOESNOT_INCLUDE_TARGET=1;; -v) shift; VERBOSE_LEVEL=$((VERBOSE_LEVEL+1));; --) shift; break;; + --help) dumpHelp();; *) break; esac done |