[UPDATE] Install Haskell iff there are packages

This commit is contained in:
Bruno BELANYI 2020-08-22 22:06:06 +02:00
parent c072d8eceb
commit bcb80798d0

View file

@ -210,4 +210,6 @@ rust:
.PHONY: haskell
haskell:
stack build --copy-compiler-tool $(HASKELL_DEPENDENCIES)
if [ -n "$(HASKELL_DEPENDENCIES)" ]; then \
stack build --copy-compiler-tool $(HASKELL_DEPENDENCIES); \
fi