summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2001-05-20 12:33:56 +0000
committerjoe <joe@FreeBSD.org>2001-05-20 12:33:56 +0000
commit81af34000ead5885d0b72f6d30650f541baef567 (patch)
treec6163e34f48bdc0d118689d08309075e5afddf9d
parent2302d1a640f577d1df42ff8fe747c9e5491f0ff3 (diff)
downloadFreeBSD-ports-81af34000ead5885d0b72f6d30650f541baef567.zip
FreeBSD-ports-81af34000ead5885d0b72f6d30650f541baef567.tar.gz
Add $DEBUG and $TMPDIR config entries.
-rwxr-xr-xCVSROOT/cfg.pm16
1 files changed, 10 insertions, 6 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm
index 7c6a05c..21b8cee 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/";
################
OpenPOWER on IntegriCloud