diff options
author | Loïc Hoguin <[email protected]> | 2025-03-19 11:58:06 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-03-20 12:40:48 +0100 |
commit | 9f43c7fdbf0ae84a173be112c1c6a712ddde28c7 (patch) | |
tree | 59e33ab9a0f0a8a1c8dbe23d78c37b9947e79a3c /core | |
parent | 69fa1814e438bf122d584b90ac51c3af391ea475 (diff) | |
download | erlang.mk-9f43c7fdbf0ae84a173be112c1c6a712ddde28c7.tar.gz erlang.mk-9f43c7fdbf0ae84a173be112c1c6a712ddde28c7.tar.bz2 erlang.mk-9f43c7fdbf0ae84a173be112c1c6a712ddde28c7.zip |
Don't fail Mix autopatch if Elixir is disabled but it has a Makefile
Diffstat (limited to 'core')
-rw-r--r-- | core/deps.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/deps.mk b/core/deps.mk index d2719e5..8b158b7 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -252,6 +252,8 @@ define dep_autopatch_detect echo mix; \ elif [ -f $(DEPS_DIR)/$1/rebar.lock -o -f $(DEPS_DIR)/$1/rebar.config ]; then \ echo rebar3; \ + elif [ -f $(DEPS_DIR)/$1/Makefile ]; then \ + echo noop; \ else \ exit 99; \ fi \ |