Skip to content

Commit

Permalink
Improve error message when parrot_config not found.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed Feb 17, 2009
1 parent 00307bb commit f9a9ea6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Configure.pl
Expand Up @@ -43,8 +43,13 @@
# Get configuration information from parrot_config
my %config = read_parrot_config(@parrot_config_exe);
unless (%config) {
die "Unable to obtain configuration from "
. join(', ', @parrot_config_exe) . "\n";
die <<"END";
Unable to locate parrot_config.
To automatically checkout (svn) and build a copy of parrot,
try re-running Configure.pl with the '--gen-parrot' option.
Or, use the '--parrot-config' option to explicitly specify
the location of parrot_config.
END
}

# Create the Makefile using the information we just got
Expand Down

0 comments on commit f9a9ea6

Please sign in to comment.