We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6260a commit 86858fdCopy full SHA for 86858fd
Make.inc
@@ -195,7 +195,7 @@ endif
195
JULIA_VERSION := $(shell cat $(JULIAHOME)/VERSION)
196
JULIA_MAJOR_VERSION := $(shell echo $(JULIA_VERSION) | cut -d'-' -f 1 | cut -d'.' -f 1)
197
JULIA_MINOR_VERSION := $(shell echo $(JULIA_VERSION) | cut -d'-' -f 1 | cut -d'.' -f 2)
198
-JULIA_PATCH_VERSION := $(shell echo $(JULIA_VERSION) | cut -d'-' -f 1 | cut -d'.' -f 3)
+JULIA_PATCH_VERSION := $(shell echo $(JULIA_VERSION) | cut -d'-' -f 1 | cut -d'+' -f 1 | cut -d'.' -f 3)
199
200
# libjulia's SONAME will follow the format libjulia.so.$(SOMAJOR). Before v1.0.0,
201
# SOMAJOR will be a two-decimal value, e.g. libjulia.so.0.5, whereas at and beyond
0 commit comments