Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Fix typo in Makefile #982

Merged
merged 1 commit into from
Dec 7, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ hie-8.6.1: submodules cabal
stack --stack-yaml=stack-8.6.1.yaml build
stack --stack-yaml=stack-8.6.1.yaml install \
&& cp '$(STACKLOCALBINDIR)/hie' '$(STACKLOCALBINDIR)/hie-8.6.1' \
&& cp '$(STACKLOCALBINDIR)/hie-8.6.1' '$(STACKLOCALBINDIR)/hie-8.4'
&& cp '$(STACKLOCALBINDIR)/hie-8.6.1' '$(STACKLOCALBINDIR)/hie-8.6'
.PHONY: hie-8.6.1

## Builds hie for GHC version 8.6.2 only
hie-8.6.2: submodules cabal
stack --stack-yaml=stack-8.6.2.yaml build
stack --stack-yaml=stack-8.6.2.yaml install \
&& cp '$(STACKLOCALBINDIR)/hie' '$(STACKLOCALBINDIR)/hie-8.6.2' \
&& cp '$(STACKLOCALBINDIR)/hie-8.6.2' '$(STACKLOCALBINDIR)/hie-8.4'
&& cp '$(STACKLOCALBINDIR)/hie-8.6.2' '$(STACKLOCALBINDIR)/hie-8.6'
.PHONY: hie-8.6.2

# ------------------------------------------------------
Expand Down