diff options
author | joe <joe@FreeBSD.org> | 2001-05-20 20:33:56 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-05-20 20:33:56 +0800 |
commit | 81af34000ead5885d0b72f6d30650f541baef567 (patch) | |
tree | c6163e34f48bdc0d118689d08309075e5afddf9d /CVSROOT/cfg.pm | |
parent | 2302d1a640f577d1df42ff8fe747c9e5491f0ff3 (diff) | |
download | freebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.tar.gz freebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.tar.zst freebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.zip |
Add $DEBUG and $TMPDIR config entries.
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-x | CVSROOT/cfg.pm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm index 7c6a05c1c055..21b8cee1e1f2 100755 --- a/CVSROOT/cfg.pm +++ b/CVSROOT/cfg.pm @@ -10,14 +10,18 @@ package cfg; use strict; -use vars qw(%TEMPLATE_HEADERS); +use vars qw($DEBUG $TMPDIR %TEMPLATE_HEADERS); -############################################################ -# -# Configurable options -# -############################################################ +###################### +### global options ### +###################### + +# Debug level, 0 = off, 1 = on. +$DEBUG = 0; + +# Location of temporary directory. +$TMPDIR = "/tmp/"; ################ |