in reply to problems with mkdir and mason

Apparently you've imported a module which exports a function called 'mkdir' elsewhere, or in some other way made it ambiguous. You can get rid of the error by following either suggestion. How about:
CORE::mkdir $dir, 0755 or BL::GenLib::MiscErr("Could not make $dir");
Also, you probably want the lower precedence or instead of || as indicated.

Replies are listed 'Best First'.
Re: Re: problems with mkdir and mason
by outcast (Monk) on Feb 25, 2001 at 04:44 UTC
    works like a charm. Thanks for your help.