Skip to content

Commit

Permalink
Add PROVE_OPTIONS variable
Browse files Browse the repository at this point in the history
So you can override the prove binary but still get TEST_JOBS support.
  • Loading branch information
MasterDuke17 committed May 20, 2017
1 parent 728ca97 commit af67837
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/build/Makefile-common.in
Expand Up @@ -113,7 +113,8 @@ PREFIX = @prefix@
BIN_DIR = $(PREFIX)/bin
NQP_LANG_DIR = $(PREFIX)/share/nqp
NQP_LIB_DIR = @nqplibdir@
PROVE = prove -j0$(TEST_JOBS)
PROVE_OPTIONS = -j0$(TEST_JOBS)
PROVE = prove $(PROVE_OPTIONS)

# nqp::makefile <-- tells NQP::Configure to treat this file as a makefile,
# performing win32 slash and makefile conversions
Expand Down

0 comments on commit af67837

Please sign in to comment.