mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
include boot classpath in vm arguments on darwin, since we don't build those classes into the executable
This commit is contained in:
parent
8e7f3b6821
commit
a2181e88c0
7
makefile
7
makefile
@ -209,7 +209,12 @@ test-dep = $(test-build)/dep
|
||||
class-name = $(patsubst $(1)/%.class,%,$(2))
|
||||
class-names = $(foreach x,$(2),$(call class-name,$(1),$(x)))
|
||||
|
||||
flags = -cp $(test-build)
|
||||
ifeq ($(platform),darwin)
|
||||
flags = -cp $(classpath-build):$(test-build)
|
||||
else
|
||||
flags = -cp $(test-build)
|
||||
endif
|
||||
|
||||
args = $(flags) $(call class-name,$(test-build),$(input))
|
||||
|
||||
.PHONY: build
|
||||
|
Loading…
Reference in New Issue
Block a user