Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Hoist out $WORKDIR
  • Loading branch information
coke committed Jun 21, 2015
1 parent c6a75bf commit 5c66c05
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions bin/rakudo.moar-jit.sh
Expand Up @@ -3,12 +3,13 @@
# default to sysperl
PATH=/usr/local/bin:$PATH

rm -rf rakudo.moar-jit
git clone repos/rakudo.git rakudo.moar-jit
git clone repos/nqp.git rakudo.moar-jit/nqp
git clone repos/MoarVM.git rakudo.moar-jit/nqp/MoarVM
git clone repos/roast.git rakudo.moar-jit/t/spec
cd rakudo.moar-jit
WORKDIR=rakudo.moar-jit
rm -rf $WORKDIR
git clone repos/rakudo.git $WORKDIR
git clone repos/nqp.git $WORKDIR/nqp
git clone repos/MoarVM.git $WORKDIR/nqp/MoarVM
git clone repos/roast.git $WORKDIR/t/spec
cd $WORKDIR
perl Configure.pl --gen-moar --gen-nqp --backends=moar
make -j all

Expand Down

0 comments on commit 5c66c05

Please sign in to comment.