summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl
index f5cf909d5..4c3997ddb 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -865,6 +865,12 @@ unless (-d $attachdir) {
mkdir $attachdir, 0770;
}
+# ZLL: 2005-08-20 Create extensions/ if it does not already exist:
+unless (-d $extensionsdir) {
+ print "Creating extensions directory ($extensionsdir) ...\n";
+ mkdir $extensionsdir, 0770;
+}
+
# 2000-12-14 New graphing system requires a directory to put the graphs in
# This code copied from what happens for the data dir above.