Skip to content

Commit

Permalink
Configure.pl - nicer error message when no parrot_config is found
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Sep 17, 2009
1 parent 1130257 commit 2a2b97f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configure.pl
Expand Up @@ -47,7 +47,8 @@ =head1 SYNOPSIS
# Get configuration information from parrot_config
my %config = read_parrot_config(@parrot_config_exe);
unless (%config) {
die "Unable to locate parrot_config.";
die "Unable to locate parrot_config\n"
."Please give me the path to it with the --parrot-config=... option.";
}

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

0 comments on commit 2a2b97f

Please sign in to comment.