Don't init a global with a global.

This commit is contained in:
Daniel Nichter
2012-01-30 10:20:31 -07:00
parent caa91f39fa
commit 89242d9fde
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ HAVE_EXT_ARGV="" # Got --, everything else is put into EXT_ARGV
OPT_ERRS=0 # How many command line option errors OPT_ERRS=0 # How many command line option errors
OPT_VERSION="" # If --version was specified OPT_VERSION="" # If --version was specified
OPT_HELP="" # If --help was specified OPT_HELP="" # If --help was specified
PO_DIR="$TMPDIR/po" # Directory with program option spec files PO_DIR="" # Directory with program option spec files
usage() { usage() {
local file="$1" local file="$1"

View File

@@ -54,7 +54,7 @@ HAVE_EXT_ARGV="" # Got --, everything else is put into EXT_ARGV
OPT_ERRS=0 # How many command line option errors OPT_ERRS=0 # How many command line option errors
OPT_VERSION="" # If --version was specified OPT_VERSION="" # If --version was specified
OPT_HELP="" # If --help was specified OPT_HELP="" # If --help was specified
PO_DIR="$TMPDIR/po" # Directory with program option spec files PO_DIR="" # Directory with program option spec files
# Sub: usage # Sub: usage
# Print usage (--help) and list the program's options. # Print usage (--help) and list the program's options.