diff options
author | Loïc Hoguin <[email protected]> | 2015-08-26 19:02:23 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-08-26 19:02:23 +0200 |
commit | 4b9b14212b8629c4ce116db11070264927ae166e (patch) | |
tree | 1ee503feabf9e48fee82426d86fabd5d75c42d70 | |
parent | 2441ea400c68ddbe90bcca374be85dd0d4fa0d10 (diff) | |
download | cowlib-4b9b14212b8629c4ce116db11070264927ae166e.tar.gz cowlib-4b9b14212b8629c4ce116db11070264927ae166e.tar.bz2 cowlib-4b9b14212b8629c4ce116db11070264927ae166e.zip |
Fix missing triq tests on CircleCI
-rw-r--r-- | erlang.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ ERLANG_MK_FILENAME := $(realpath $(lastword $(MAKEFILE_LIST))) -ERLANG_MK_VERSION = 1.2.0-645-ge88092a +ERLANG_MK_VERSION = 1.2.0-646-gcf43676 # Core configuration. @@ -5855,7 +5855,7 @@ shell: build-shell-deps # Copyright (c) 2015, Loïc Hoguin <[email protected]> # This file is part of erlang.mk and subject to the terms of the ISC License. -ifneq ($(wildcard $(DEPS_DIR)/triq),) +ifeq ($(filter triq,$(DEPS) $(TEST_DEPS)),triq) .PHONY: triq # Targets. |