Skip to content

Commit 29fc96c

Browse files
committed
Merge branch 'master' of github.com:/perl6/nqp
2 parents 77f6891 + 85b85cf commit 29fc96c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tools/build/MOAR_REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2013.10-4-gb85d5e6
1+
2013.10-59-ge6f452f

tools/lib/NQP/Configure.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ sub gen_parrot {
389389
$prefix =~ s{\\}{/}g;
390390

391391
print "\nConfiguring Parrot ...\n";
392-
my @cmd = ($^X, "Configure.pl", @opts, "--prefix=\"$prefix\"");
392+
my @cmd = ($^X, "Configure.pl", @opts, "--prefix=$prefix");
393393
print "@cmd\n";
394394
system_or_die(@cmd);
395395

@@ -417,7 +417,7 @@ sub gen_moar {
417417
my $prefix = $options{'prefix'} || cwd()."/install";
418418
my $gen_moar = $options{'gen-moar'};
419419
my @opts = @{ $options{'moar-option'} || [] };
420-
# push @opts, "--optimize";
420+
push @opts, "--optimize";
421421
my $startdir = cwd();
422422

423423
my $moar_exe = "$prefix/bin/moar$exe";
@@ -447,7 +447,7 @@ sub gen_moar {
447447

448448
$prefix =~ s{\\}{/}g;
449449
print "\nConfiguring and building MoarVM ...\n";
450-
my @cmd = ($^X, "Configure.pl", @opts, "--prefix=\"$prefix\"", '--make-install');
450+
my @cmd = ($^X, "Configure.pl", @opts, "--prefix=$prefix", '--make-install');
451451
print "@cmd\n";
452452
system_or_die(@cmd);
453453

0 commit comments

Comments
 (0)