# New Ticket Created by  Andy Dougherty 
# Please include the string:  [perl #22762]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=22762 >


This patch is necessary to get parrot to build with perl 5.00503 -- the
mode argument to mkdir() wasn't optional back then.  I'd apply it
myself, but cvs doesn't seem to like me today, and I'm tired of
fighting it.  (My login apparently succeeds, but the commit fails
claiming I don't have 'write' privs.)

--- parrot-current/config/gen/makefiles/root.in Fri May 30 11:00:09 2003
+++ parrot-andy/config/gen/makefiles/root.in    Wed Jun 11 15:26:29 2003
@@ -150,7 +150,7 @@
 PERL = ${perl}

 # Make directory; do not die if dir exists.
-MKDIR = $(PERL) -e ${PQ}-d or mkdir $$_ or die foreach @ARGV${PQ}
+MKDIR = $(PERL) -e ${PQ}-d or mkdir $$_,0777 or die foreach @ARGV${PQ}


 ###############################################################################


-- 
    Andy Dougherty              [EMAIL PROTECTED]


Reply via email to