Skip to content

Commit

Permalink
more warning on missing parrot_config field
Browse files Browse the repository at this point in the history
Signed-off-by: Bernhard Schmalhofer <Bernhard.Schmalhofer@gmx.de>
  • Loading branch information
szabgab authored and bschmalhofer committed Apr 20, 2009
1 parent 123a4b1 commit f72b269
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Configure.pl
Expand Up @@ -83,7 +83,11 @@ END
);

# Done.
done($config{'make'});
if (not defined $config{'make'}) {
warn "missing field 'make' from parrot_config\n";
} else {
done($config{'make'});
}


# Process command line arguments into a hash.
Expand Down

0 comments on commit f72b269

Please sign in to comment.