Commit ca4f5faa authored by Alexandre Julliard's avatar Alexandre Julliard

Create the output directory if needed.

parent 8c23dba9
......@@ -2193,6 +2193,12 @@ if (@opt_spec_file_list == 0)
exit 0; # Don't bother processing non-dll files
}
# Make sure the output directory exists
unless (-d $opt_output_directory)
{
mkdir $opt_output_directory or die "Cannot create directory $opt_output_directory\n";
}
# Read in each .spec files exports and other details
while(my $spec_file = shift @opt_spec_file_list)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment