mirror of
https://github.com/corda/corda.git
synced 2025-01-19 11:16:54 +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-name = $(patsubst $(1)/%.class,%,$(2))
|
||||||
class-names = $(foreach x,$(2),$(call class-name,$(1),$(x)))
|
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))
|
args = $(flags) $(call class-name,$(test-build),$(input))
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
|
Loading…
Reference in New Issue
Block a user