From 1fce2f3d8b1ba03bd9b04173bd9d8238ca9c0fe5 Mon Sep 17 00:00:00 2001 From: "leaf%mozilla.org" Date: Mon, 24 Jan 2000 13:54:29 +0000 Subject: [PATCH] switching to native perl mkdir, does not affect build. r=ssu --- xpinstall/packager/windows/makeall.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpinstall/packager/windows/makeall.pl b/xpinstall/packager/windows/makeall.pl index 5f66a32312d..3bb60ea6b2f 100644 --- a/xpinstall/packager/windows/makeall.pl +++ b/xpinstall/packager/windows/makeall.pl @@ -61,7 +61,7 @@ if(!(-e "$inStagePath")) # Make sure inDestPath exists if(!(-e "$inDistPath")) { - system("mkdir $inDestPath"); + mkdir ("$inDestPath",0775); } # Make .js files @@ -80,7 +80,7 @@ if(-e "$inDistPath\\setup") } else { - system("mkdir $inDistPath\\setup"); + mkdir ("$inDistPath\\setup",0775); } # Copy the setup files to the dist setup directory.