Skip to content

Commit

Permalink
Fixed bug in installation target for 64 bit builds
Browse files Browse the repository at this point in the history
  • Loading branch information
MSoegtropIMC committed Jul 30, 2020
1 parent 49b4d64 commit b4cbfe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ ifeq ($(ARCH),x86)
ifeq ($(BITSIZE),32)
INSTALLDIR ?= $(COQLIB)/user-contrib/VST
else
INSTALLDIR ?= $(realpath $(COQLIB)/../coq-variant/VST64/VST)
INSTALLDIR ?= $(abspath $(COQLIB)/../coq-variant/VST64/VST)
endif
else
INSTALLDIR ?= $(realpath $(COQLIB)/../coq-variant/VST_$(ARCH)_$(BITSIZE)/VST
INSTALLDIR ?= $(abspath $(COQLIB)/../coq-variant/VST_$(ARCH)_$(BITSIZE)/VST
endif
# ########## Flags ##########
Expand Down

0 comments on commit b4cbfe8

Please sign in to comment.