Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'origin/spacey'"
Browse files Browse the repository at this point in the history
This reverts commit 1db6167, reversing
changes made to c9bc4a2.
  • Loading branch information
jnthn committed Feb 16, 2013
1 parent 97fd401 commit b1258d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions tools/build/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
PARROT_ARGS = -L. -X.

# values from parrot_config
PARROT_BIN_DIR = "@bindir@"
PARROT_LIB_SHARED = "@libparrot_shared@"
PARROT_VERSION = "@versiondir@"
PARROT_INCLUDE_DIR = "@includedir@$(PARROT_VERSION)"
PARROT_LIB_DIR = "@libdir@$(PARROT_VERSION)"
PARROT_SRC_DIR = "@srcdir@$(PARROT_VERSION)"
PARROT_BIN_DIR = @bindir@
PARROT_LIB_SHARED = @libparrot_shared@
PARROT_VERSION = @versiondir@
PARROT_INCLUDE_DIR = @includedir@$(PARROT_VERSION)
PARROT_LIB_DIR = @libdir@$(PARROT_VERSION)
PARROT_SRC_DIR = @srcdir@$(PARROT_VERSION)
PARROT_LIBRARY_DIR = $(PARROT_LIB_DIR)/library
NQP_LANG_DIR = $(PARROT_LIB_DIR)/languages/nqp
HAS_ICU = @has_icu@
Expand All @@ -24,7 +24,7 @@ LIBPARROT = @inst_libparrot_ldflags@
O = @o@
A = @a@
LOAD_EXT = @load_ext@
PERL = "@perl@"
PERL = @perl@
CP = @cp@
MV = @mv@
RM_F = @rm_f@
Expand Down
6 changes: 3 additions & 3 deletions tools/lib/NQP/Configure.pm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sub read_config {
my %config = ();
for my $file (@config_src) {
no warnings;
if (open my $CONFIG, '-|', qq["$file" --show-config]) {
if (open my $CONFIG, '-|', "$file --show-config") {
while (<$CONFIG>) {
if (/^([\w:]+)=(.*)/) { $config{$1} = $2 }
}
Expand Down Expand Up @@ -132,7 +132,7 @@ END
}
close($PARROT_CONFIG) or die $!;
}
elsif (open my $PARROT, '-|', qq["$file" parrot-config.pir]) {
elsif (open my $PARROT, '-|', "$file parrot-config.pir") {
while (<$PARROT>) {
if (/^([\w:]+)=(.*)/) { $config{$1} = $2 }
}
Expand Down Expand Up @@ -290,7 +290,7 @@ sub gen_nqp {
return $nqp_exe;
}

my @cmd = ($^X, 'Configure.pl', qq[--with-parrot="$with_parrot"],
my @cmd = ($^X, 'Configure.pl', "--with-parrot=$with_parrot",
"--make-install");
print "Building NQP ...\n";
chdir("$startdir/nqp");
Expand Down

0 comments on commit b1258d7

Please sign in to comment.