Skip to content

Commit

Permalink
[Configure] do not gen-nqp when --with-nqp is provided
Browse files Browse the repository at this point in the history
Fix by diakopter++
  • Loading branch information
moritz committed May 26, 2012
1 parent 053013e commit 75c0e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -56,7 +56,7 @@
}

# --with-parrot and --gen-parrot imply --gen-nqp
if (!defined $gen_nqp && (defined $with_parrot || defined $gen_parrot)) {
if (!defined $gen_nqp && !defined $with_nqp && (defined $with_parrot || defined $gen_parrot)) {
$gen_nqp = '';
}

Expand Down

0 comments on commit 75c0e9c

Please sign in to comment.