Browse Source

Allow new_parrot to take arbitrary Configure.pl flags

master
Jonathan "Duke" Leto 14 years ago
parent
commit
156d661a4a
  1. 6
      bin/new_parrot

6
bin/new_parrot

@ -12,8 +12,10 @@ if [ $? -eq 0 ]; then
fi
make realclean
perl Configure.pl --cc="$CC" \
--ccflags=-g \
perl Configure.pl \
--cc="$CC" \
--ccflags=-g \
$1 \
--prefix="$PWD/installed_parrot" && \
nice -n20 make TEST_JOBS=$TEST_JOBS && \
make install

Loading…
Cancel
Save