mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
Bad quoting for catala compiler options
This commit is contained in:
parent
b2a5551961
commit
fa8803e297
5
Makefile
5
Makefile
@ -236,15 +236,14 @@ run_french_law_library_benchmark_python: type_french_law_library_python
|
||||
# High-level test and benchmarks commands
|
||||
##########################################
|
||||
|
||||
CATALA_OPTS?=""
|
||||
|
||||
CATALA_OPTS?=
|
||||
CLERK_OPTS?=
|
||||
|
||||
CATALA_BIN=_build/default/compiler/catala.exe
|
||||
CLERK_BIN=_build/default/build_system/clerk.exe
|
||||
|
||||
CLERK=$(CLERK_BIN) --exe $(CATALA_BIN) \
|
||||
$(CLERK_OPTS) --catala-opts=$(CATALA_OPTS)
|
||||
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),)
|
||||
|
||||
|
||||
.FORCE:
|
||||
|
@ -1,9 +1,8 @@
|
||||
CATALA_OPTS?=""
|
||||
|
||||
CATALA_OPTS?=
|
||||
CLERK_OPTS?=
|
||||
|
||||
CLERK=../_build/default/build_system/clerk.exe --exe "../_build/default/compiler/catala.exe" \
|
||||
$(CLERK_OPTS) --catala-opts=$(CATALA_OPTS) test
|
||||
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),) test
|
||||
|
||||
################################
|
||||
# Running legislation unit tests
|
||||
|
@ -2,12 +2,11 @@
|
||||
# Preamble
|
||||
############################################
|
||||
|
||||
CATALA_OPTS?=""
|
||||
|
||||
CATALA_OPTS?=
|
||||
CLERK_OPTS?=
|
||||
|
||||
CLERK=../_build/default/build_system/clerk.exe --exe "../_build/default/compiler/catala.exe" \
|
||||
$(CLERK_OPTS) --catala-opts=$(CATALA_OPTS) test
|
||||
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),) test
|
||||
|
||||
# Forces all the tests to be redone
|
||||
.FORCE:
|
||||
|
Loading…
Reference in New Issue
Block a user