diff options
author | joe <joe@FreeBSD.org> | 2001-08-19 13:14:42 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-08-19 13:14:42 +0000 |
commit | ea2f69d95c9d564d8f5f90d2498432b38f04422c (patch) | |
tree | d325a9a68270a59021e07c0bd9468fdddfd13bd4 /CVSROOT/cvs_acls.pl | |
parent | 9aa763c5864ac5a7c8aa6f3185eb41e669c74cfa (diff) | |
download | FreeBSD-ports-ea2f69d95c9d564d8f5f90d2498432b38f04422c.zip FreeBSD-ports-ea2f69d95c9d564d8f5f90d2498432b38f04422c.tar.gz |
Pickup the debug variable from the config file.
Diffstat (limited to 'CVSROOT/cvs_acls.pl')
-rwxr-xr-x | CVSROOT/cvs_acls.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CVSROOT/cvs_acls.pl b/CVSROOT/cvs_acls.pl index 9f905c7..34f8c05 100755 --- a/CVSROOT/cvs_acls.pl +++ b/CVSROOT/cvs_acls.pl @@ -75,7 +75,10 @@ # third column of a single avail line. # -$debug = 0; +use lib $ENV{CVSROOT}; +use CVSROOT::cfg; + +$debug = $cfg::DEBUG; $die = ''; $cvsroot = $ENV{'CVSROOT'}; $availfile = $cvsroot . "/CVSROOT/avail"; |