Skip to content

Commit

Permalink
Give a slightly better error message when Configure.pl can't find the…
Browse files Browse the repository at this point in the history
… build tool
  • Loading branch information
leto committed Oct 1, 2009
1 parent f8b96dd commit acba2b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Configure.pl
Expand Up @@ -97,6 +97,9 @@ sub create_makefiles {
);
my $build_tool = $config{libdir} . $config{versiondir}
. '/tools/dev/gen_makefile.pl';

die "Build tool $build_tool not found\nThis usually means that you need to do a 'make install-dev' in your parrot source code directory." unless -e $build_tool;

print "$build_tool\n";
foreach my $template (keys %makefiles) {
my $makefile = $makefiles{$template};
Expand Down

0 comments on commit acba2b1

Please sign in to comment.