Skip to content

Commit

Permalink
Missing parentheses on JULIA_VERSION
Browse files Browse the repository at this point in the history
leads to installing to `julia-ULIA_VERSION` when `NO_GIT = 1`
  • Loading branch information
tkelman committed Mar 4, 2014
1 parent d36bb08 commit ba91b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ JULIA_VERSION = $(shell cat $(JULIAHOME)/VERSION)
ifneq ($(NO_GIT), 1)
JULIA_COMMIT = $(shell git rev-parse --short=10 HEAD)
else
JULIA_COMMIT = $JULIA_VERSION
JULIA_COMMIT = $(JULIA_VERSION)
endif

# Directories where said libraries get installed to
Expand Down

0 comments on commit ba91b74

Please sign in to comment.