From 6b22b9dfb9e31e72845f2c68af6a9356d019e721 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Mon, 7 Sep 2009 20:32:14 +0200 Subject: [PATCH] when --gen-parrot-prefix is passed along, we should also search in that path for parrot_config --- Configure.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Configure.pl b/Configure.pl index bd400e23ac0..c589b6de335 100644 --- a/Configure.pl +++ b/Configure.pl @@ -42,6 +42,10 @@ ../../parrot_config parrot_config ); + if (exists $options{'gen-parrot-prefix'}) { + unshift @parrot_config_exe, + $options{'gen-parrot-prefix'} . '/bin/parrot_config'; + } if ($options{'parrot-config'} && $options{'parrot-config'} ne '1') { @parrot_config_exe = ($options{'parrot-config'});