Skip to content

Commit

Permalink
raptorjit.nix: Fix executable name / broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukego committed Jul 28, 2017
1 parent eaf418c commit d095eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raptorjit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mkDerivation rec {
buildInputs = [ luajit ]; # LuaJIT to bootstrap DynASM
installPhase = ''
mkdir -p $out/bin
cp src/luajit $out/bin/raptorjit
cp src/raptorjit $out/bin/raptorjit
'';

enableParallelBuilding = true; # Do 'make -j'
Expand Down

0 comments on commit d095eae

Please sign in to comment.