![]() |
mhonarc-users
|
Re: help;msdos install.me1996-03-12 13:20:28I have one more error in the install.me script. The message is "trailing \ in regexp at install.me line 221, <STDIN> line3.". Can you suggest a fix for this?
Same problem as you first message. In create_dir, change
local(@a) = grep($_ ne '', split(/$DIRSEP/o, $d));
to
local($tmp);
($tmp = $DIRSEP) =~ s/(\W)/\\$1/g;
local(@a) = grep($_ ne '', split(/$tmp/o, $d));
Tell me if it works.
--ewh
|
|
||||||||||||||||