Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix the build on Linux amd64/gcc
Without this fix, "make" in the dyncall-0.6 directory would copy the .a
files into a build_out/*/ dir, and thus the nqp ops compilation failed.

I hope this doesn't break the build on other platforms.
  • Loading branch information
moritz committed Nov 24, 2011
1 parent f7e601c commit 329046c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configure.pl
Expand Up @@ -116,7 +116,7 @@
}
else {
system_or_die('cd 3rdparty/dyncall-0.6 && sh configure');
$config{'dyncall_build'} = "cd 3rdparty/dyncall-0.6 && $make";
$config{'dyncall_build'} = "cd 3rdparty/dyncall-0.6 && BUILD_DIR=. $make";
}

fill_template_file('tools/build/Makefile.in', 'Makefile', %config);
Expand Down

0 comments on commit 329046c

Please sign in to comment.