Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Configure.pl] Move function call
  • Loading branch information
fernandobrito committed Dec 2, 2010
1 parent d781754 commit 25db176
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Configure.pl
Expand Up @@ -20,9 +20,6 @@
exit(0);
}

# Determine the revision of Parrot we require
my ($req, $reqpar) = parse_parrot_revision_file;

# Update/generate parrot build if needed
if ($options{'gen-parrot'}) {
my @opts = @{ $options{'gen-parrot-option'} || [] };
Expand Down Expand Up @@ -55,6 +52,9 @@
# Get configuration information from parrot_config
my %config = read_parrot_config(@parrot_config_exe);

# Determine the revision of Parrot we require
my ($req, $reqpar) = parse_parrot_revision_file;

my $parrot_errors = '';
if (!%config) {
$parrot_errors .= "Unable to locate parrot_config\n";
Expand Down

0 comments on commit 25db176

Please sign in to comment.