Browse Source

Part 2 of Makefile fix from Steffen Marcker (64-bit detection on Macs)

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@6343 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 13 years ago
parent
commit
a6b2b4f3c7
  1. 4
      prism/Makefile

4
prism/Makefile

@ -70,10 +70,10 @@ endif
# whether java is 32/64-bit (since these need to match)
ifeq ($(OSTYPE),darwin)
JAVA_VERSION_STRING = $(shell java -version 2>&1)
ifneq (,$(findstring 64-bit, $(JAVA_VERSION_STRING)) )
ifneq (,$(findstring 64-bit, $(JAVA_VERSION_STRING)))
ARCH = x86_64
endif
ifneq (,$(findstring 64-Bit, $(JAVA_VERSION_STRING)) )
ifneq (,$(findstring 64-Bit, $(JAVA_VERSION_STRING)))
ARCH = x86_64
endif
endif

Loading…
Cancel
Save