From 5d3d3a359061c922ef7080ba9b53e7bd224e6397 Mon Sep 17 00:00:00 2001 From: pmichaud Date: Mon, 21 Sep 2009 20:48:14 -0500 Subject: [PATCH] Add --optimize to default --gen-parrot build. --- Configure.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure.pl b/Configure.pl index 178a2d3d2a8..e4707dcb224 100644 --- a/Configure.pl +++ b/Configure.pl @@ -31,7 +31,7 @@ my $prefix = $options{'gen-parrot-prefix'} || cwd()."/parrot_install"; # parrot's Configure.pl mishandles win32 backslashes in --prefix $prefix =~ s{\\}{/}g; - my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix", @opts); + my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix", "--optimize", @opts); print "Generating Parrot ...\n"; print "@command\n\n";