summaryrefslogtreecommitdiff
path: root/pl/makedir.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pl/makedir.pl')
-rw-r--r--pl/makedir.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/pl/makedir.pl b/pl/makedir.pl
index a358deb..37b9253 100644
--- a/pl/makedir.pl
+++ b/pl/makedir.pl
@@ -22,7 +22,7 @@ sub makedir {
local($dir) = $_;
if (!-d && $_ ne '') {
# Make dirname first
- do makedir($_) if s|(.*)/.*|\1|;
+ &makedir($_) if s|(.*)/.*|\1|;
mkdir($dir, 0700) if ! -d $dir;
}
}